1 |
8725
|
aaronmk
|
match,repl,comment
|
2 |
8745
|
aaronmk
|
,,#### formatting fixes
|
3 |
8725
|
aaronmk
|
"(?<=</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;} /*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 |
8751
|
aaronmk
|
(?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=("".*?"").*?>.*?) src=""blank\.gif"" ","\1
|
22 |
8747
|
aaronmk
|
src=\2
|
23 |
8750
|
aaronmk
|
",display ICON attribute as favicon when available
|
24 |
8745
|
aaronmk
|
,,#### svn diff cleanup
|
25 |
8746
|
aaronmk
|
" (ICON=""data:.*?"") ?(?!
|
26 |
|
|
)","
|
27 |
|
|
\1
|
28 |
|
|
",put ICON attributes with favicon contents on their own line so the rest of the line is easier to see
|
29 |
8728
|
aaronmk
|
" LAST_MODIFIED="".*?""",,"remove LAST_MODIFIED attributes, which seem to change whenever the favicon is updated and clutter up the svn diff"
|
30 |
8745
|
aaronmk
|
,,#### bookmark text fixes
|
31 |
8737
|
aaronmk
|
(?<=^<DD>)(?!"|$)(?:[^:\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."
|
32 |
8745
|
aaronmk
|
,,#### bookmark reorganization
|
33 |
8744
|
aaronmk
|
"(?<=^<DL><p>
|
34 |
|
|
)((?s).*)(^ <DT><H3 .*PERSONAL_TOOLBAR_FOLDER=""true"">Bookmarks Toolbar</H3>
|
35 |
|
|
(?:(?s).*?)
|
36 |
|
|
</DL><p>
|
37 |
|
|
)",\2\1,move Bookmarks Toolbar to beginning
|
38 |
|
|
"(?<=PERSONAL_TOOLBAR_FOLDER=""true"">Bookmarks Toolbar</H3>
|
39 |
|
|
)<DD>(?:(?s).*?)</DD>
|
40 |
|
|
",,remove Bookmarks Toolbar desc
|
41 |
|
|
"(?<=PERSONAL_TOOLBAR_FOLDER=""true"">)Bookmarks Toolbar(?=</H3>$)",Quick links,rename Bookmarks Toolbar to Quick links
|