Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Side by Side Diff: third_party/re2/doc/mksyntaxhtml

Issue 1544433002: Replace RE2 import with a dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-Added LICENSE and OWNERS file Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/re2/doc/mksyntaxgo ('k') | third_party/re2/doc/mksyntaxwiki » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 cp syntax.txt syntax.html
4 sam -d syntax.html <<'!'
5 ,s/\&/\&amp;/g
6 ,s/</\&lt;/g
7 ,s/>/\&gt;/g
8 ,s!== (([^()]|\([^()]*\))*)!≡ <code>\1</code>!g
9 ,s!«!<code>!g
10 ,s!»!</code>!g
11 ,s! vim$! <font size=-2>VIM</font>!g
12 ,s! pcre$! <font size=-2>PCRE</font>!g
13 ,s! perl$! <font size=-2>PERL</font>!g
14 ,x g/NOT SUPPORTED/ s!^[^ ]+!<font color=#808080>&</font>!
15 ,s!NOT SUPPORTED!!g
16 ,s!(^[^ ]+) (.*)\n!<tr><td><code>\1</code></td><td>\2</td></tr>\n!g
17 ,s!.*:$!<b>&</b>!g
18 ,s!^$!<tr><td></td></tr>!g
19 ,x v/<tr>/ s!.*!<tr><td colspan=2>&</td></tr>!
20 1,2c
21 <html>
22 <!-- AUTOMATICALLY GENERATED by mksyntaxhtml -->
23 <head>
24 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
25 <title>RE2 regular expression syntax reference</title>
26 </head>
27 <body>
28 <h1>RE2 regular expression syntax reference</h1>
29
30 <table border=0 cellpadding=2 cellspacing=2>
31 <tr><td colspan=2>This page lists the regular expression syntax accepted by RE2. </td></tr>
32 <tr><td colspan=2>It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr >
33 <tr><td colspan=2>Grayed out expressions are not supported by RE2.</td></tr>
34 .
35 $a
36 </table>
37 </body>
38 </html>
39 .
40 w
41 q
42 !
OLDNEW
« no previous file with comments | « third_party/re2/doc/mksyntaxgo ('k') | third_party/re2/doc/mksyntaxwiki » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698