diff options
author | JinweiClarkChao <[email protected]> | 2014-08-22 17:23:02 +0800 |
---|---|---|
committer | Jinwei Zhao <[email protected]> | 2017-01-13 15:07:42 +0800 |
commit | 80255411ee7040e0cebbf6b05d2ce323f6f2596e (patch) | |
tree | 295b0ef6c85e7cb091b63719ab041596879690fa /Back/Blocks/syntax/index.html | |
parent | 13be3d058713e1467ffc573a90cc694b80526135 (diff) | |
download | jinwei.me-80255411ee7040e0cebbf6b05d2ce323f6f2596e.tar.gz |
backup
Diffstat (limited to 'Back/Blocks/syntax/index.html')
-rw-r--r-- | Back/Blocks/syntax/index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Back/Blocks/syntax/index.html b/Back/Blocks/syntax/index.html new file mode 100644 index 0000000..5d8d56d --- /dev/null +++ b/Back/Blocks/syntax/index.html | |||
@@ -0,0 +1,24 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
3 | <head> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
5 | <title>Hello SyntaxHighlighter</title> | ||
6 | <script type="text/javascript" src="scripts/shCore.js"></script> | ||
7 | <script type="text/javascript" src="scripts/shBrushCpp.js"></script> | ||
8 | <link type="text/css" rel="stylesheet" href="styles/shCoreDefault.css"/> | ||
9 | <script type="text/javascript">SyntaxHighlighter.all();</script> | ||
10 | </head> | ||
11 | |||
12 | <body style="background: white; font-family: Helvetica"> | ||
13 | |||
14 | <h1>Hello SyntaxHighlighter</h1> | ||
15 | <pre class="brush: cpp;"> | ||
16 | #include "stdio.h" | ||
17 | int main() | ||
18 | { | ||
19 | printf("Hello\n"); | ||
20 | return 0; | ||
21 | } | ||
22 | </pre> | ||
23 | |||
24 | </html> | ||