Project

General

Profile

1
match,repl,comment
2
,,#### formatting fixes
3
"(?<=</TITLE>
4
)(?!<style)","<style type=""text/css"">
5
/*fixes for default HTML tag formatting*/
6
dl dl {margin-left: 30pt;} /*indent nested <dl>s*/
7

    
8
/*readability*/
9
html {font-family: sans-serif;} /*use readable font*/
10
dt {margin-top: 6pt; margin-bottom: 6pt;} /*visually separate <dt>s*/
11

    
12
/*Firefox bookmarks-specific*/
13
dd {white-space: pre-wrap;} /*format bookmark description as plaintext*/
14
</style>
15
",add <style>
16
"^<DD>.*(?:
17
(?! *<).*)*(?=
18
 *<DL>)","\g<0>
19
</DD>",close <DD> when followed by tags which don't autoclose it properly
20
(?s)(<A .*?>)(?:<img\b.*?/>)?,"\1<img width=""16"" height=""16"" src=""blank.gif"" style=""margin-right: 0.5em;""/>",display placeholder favicon image for every link to ensure uniform alignment
21
"(?s)(\bICON_URI=("".*?"").*?>.*?\bsrc=)""blank\.gif""",\1\2,display ICON_URI attribute as favicon when available
22
,,#### svn diff cleanup
23
" ICON=""data:.*?""",,"remove ICON attributes with inline image data, which are not needed and clutter up the svn diff"
24
" LAST_MODIFIED="".*?""",,"remove LAST_MODIFIED attributes, which seem to change whenever the favicon is updated and clutter up the svn diff"
25
,,#### bookmark text fixes
26
(?<=^<DD>)(?!&quot;|-+$)(?:[^:\n]*? description: )?,page's description: ,"label page's description as such to avoid confusing it with comments added by the bookmark author, who may not agree with it. the page's description is in the 1st paragraph(s), when provided. if the bookmark desc starts with "" or a blank line, this is an author-added quotation or comment and not the page's description."
27
,,#### bookmark reorganization
28
"(?s)(^<DL><p>
29
    <DT><H3 [^\n]*
30
    <DL><p>
31
)(.*)(^    <DT><H3 [^\n]*PERSONAL_TOOLBAR_FOLDER=""true"">Bookmarks Toolbar</H3>
32
.*?
33
    </DL><p>
34
)",\1\3\2,move Bookmarks Toolbar to beginning inside first folder
35
"(?s)(?<=PERSONAL_TOOLBAR_FOLDER=""true"">Bookmarks Toolbar</H3>
36
)<DD>.*?</DD>
37
",,remove Bookmarks Toolbar desc
38
"(?<=PERSONAL_TOOLBAR_FOLDER=""true"">)Bookmarks Toolbar(?=</H3>$)",Quick links,rename Bookmarks Toolbar to Quick links
39
"^<DL><p>
40
    <DT><H3(?! style=)","\g<0> style=""font-size: 200%;""",make first folder name the page title
41
"^<H1>.*?</H1>
42
",,remove previous page title
43
"(?s)(?<=^<TITLE>)[^\n]*?(?=</TITLE>
44
.*?
45
<DL><p>
46
    <DT><H3[^\n]*?>([^\n]*?)</H3>$)",\1,use page title as window title
47
,,#### indexing
48
(<DT>)(?:<a name=.*?>)?(<H3[^\n]*?>(.*?)</H3>)(?:</a>)?,"\1<a name=""\3"" href=""#\3"">\2</a>",add hyperlinked HTML anchors for folders
(1-1/50)