Added smutest - smu - smu - simple markup (Markdown) processor (fork, fixes + f… | |
git clone git://git.codemadness.org/smu | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 886702c351cd6082a898e206d7b146584b6dfaa2 | |
parent 1d7d3a4598596f6387cf7407c42265591d838ea4 | |
Author: [email protected] <[email protected]> | |
Date: Mon, 14 Jan 2008 14:27:19 +0100 | |
Added smutest | |
Diffstat: | |
A smutest | 59 +++++++++++++++++++++++++++++… | |
1 file changed, 59 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/smutest b/smutest | |
@@ -0,0 +1,59 @@ | |
+ | |
+ | |
+ | |
+ | |
+smu test | |
+======== | |
+ | |
+simple tests | |
+------------ | |
+ | |
+first paragraph. | |
+testing surround: _emph_ then **strong** and `code`. | |
+ | |
+horizontal rule: | |
+ | |
+- - - | |
+ | |
+ | |
+blocks and entities | |
+------------------- | |
+ | |
+preformatted block: | |
+ --- | |
+ \ |\ /| | | | |
+ \ | | |__| | |
+ --- | |
+ | |
+quoted text: | |
+> When in doubt, | |
+> use brute force. | |
+ | |
+list: | |
+* Make each program do one thing well. | |
+* Expect the output of every program to become the input to another, | |
+as yet unknown, program. | |
+* Design and build software, even operating systems, to be tried early, | |
+ideally within weeks. | |
+* Use tools in preference to unskilled help to lighten a programming task. | |
+ | |
+list in list: | |
+* a | |
+ * b | |
+ 1. c | |
+ 2. d | |
+ * e | |
+* f | |
+ | |
+entity: &, <, > | |
+ | |
+code: | |
+ int powerof2(unsigned int n) { | |
+ return !((n - 1) & n) && n > 0; | |
+ } | |
+ | |
+links | |
+----- | |
+ | |
+[suckless](http://suckless.org) | |
+ |