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

Side by Side Diff: site/dev/tools/markdown.md

Issue 2128013003: Update markdown to use absolute image paths, fixing broken images (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 5 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 | « site/dev/tools/debugger.md ('k') | site/dev/tools/qtdebugger.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Markdown 1 Markdown
2 ======== 2 ========
3 3
4 This site can handle normal MarkDown and many common extensions. To learn 4 This site can handle normal MarkDown and many common extensions. To learn
5 how the following is done please see the [source for this page](./markdown.md). 5 how the following is done please see the [source for this page](./markdown.md).
6 Any file you put under `/site/` that has the extension `.md` will be processed 6 Any file you put under `/site/` that has the extension `.md` will be processed
7 as MarkDown. All other files will be served directly. For example, images 7 as MarkDown. All other files will be served directly. For example, images
8 can be added and they will be served correctly and referenced from within MarkDo wn files. 8 can be added and they will be served correctly and referenced from within MarkDo wn files.
9 9
10 When preparing for a code review of site docs you can get a preview of how the 10 When preparing for a code review of site docs you can get a preview of how the
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 1. First 64 1. First
65 2. Second: 65 2. Second:
66 * Fee 66 * Fee
67 * Fie 67 * Fie
68 * Foe 68 * Foe
69 * Fum 69 * Fum
70 3. Third 70 3. Third
71 71
72 Incorporate images: 72 Incorporate images:
73 73
74 ![image](image.png) 74 ![image](/dev/tools/image.png)
75 75
76 Or go old school and use [ASCII art](http://asciiflow.com/): 76 Or go old school and use [ASCII art](http://asciiflow.com/):
77 77
78 ~~~~ 78 ~~~~
79 79
80 +----------------+ 80 +----------------+
81 | Should you | 81 | Should you |
82 +--+ use ASCII art? +--+ 82 +--+ use ASCII art? +--+
83 | +----------------+ | 83 | +----------------+ |
84 | | 84 | |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 412
413 Output: 413 Output:
414 414
415 <p>If you want your page to validate under XHTML 1.0 Strict, 415 <p>If you want your page to validate under XHTML 1.0 Strict,
416 you've got to put paragraph tags in your blockquotes:</p> 416 you've got to put paragraph tags in your blockquotes:</p>
417 417
418 <pre><code>&lt;blockquote&gt; 418 <pre><code>&lt;blockquote&gt;
419 &lt;p&gt;For example.&lt;/p&gt; 419 &lt;p&gt;For example.&lt;/p&gt;
420 &lt;/blockquote&gt; 420 &lt;/blockquote&gt;
421 </code></pre> 421 </code></pre>
OLDNEW
« no previous file with comments | « site/dev/tools/debugger.md ('k') | site/dev/tools/qtdebugger.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698