002-markdown-example.md - static-site-scripts - static site generator shellscri… | |
git clone git://git.codemadness.org/static-site-scripts | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
002-markdown-example.md (880B) | |
--- | |
1 simple tests | |
2 ------------ | |
3 | |
4 first paragraph. | |
5 testing surround: _emph_ then **strong** and `code`. | |
6 | |
7 `\`escaped backticks\``. | |
8 | |
9 `x = *y * 6;` | |
10 | |
11 horizontal rule: | |
12 | |
13 - - - | |
14 | |
15 | |
16 blocks and entities | |
17 ------------------- | |
18 | |
19 preformatted block: | |
20 .'''' .'.'. | | | |
21 '''. | ' | | | | |
22 '''' ' ' "" | |
23 | |
24 quoted text: | |
25 > When in doubt, | |
26 > use brute force. | |
27 | |
28 list: | |
29 * Make each program do one thing well. | |
30 * Expect the output of every program to become the input to another, | |
31 as yet unknown, program. | |
32 * Design and build software, even operating systems, to be tried early, | |
33 ideally within weeks. | |
34 * Use tools in preference to unskilled help to lighten a programming tas… | |
35 | |
36 list in list: | |
37 * a | |
38 * b | |
39 1. c | |
40 2. d | |
41 * e | |
42 * f | |
43 | |
44 entity: &, <, > | |
45 | |
46 code: | |
47 int powerof2(unsigned int n) { | |
48 return !((n - 1) & n) && n > 0; | |
49 } | |
50 | |
51 links | |
52 ----- | |
53 | |
54 [suckless](http://suckless.org) | |
55 | |
56 inline html | |
57 ----------- | |
58 | |
59 <center> | |
60 ABC | |
61 </center> |