raster pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=0833e753db5b78557757f6d10070867a6a604cb4

commit 0833e753db5b78557757f6d10070867a6a604cb4
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Mon May 18 21:31:45 2015 +0900

    syntax page - provide some visible syntax explanations
---
 pages/wiki/syntax.txt | 98 ++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 86 insertions(+), 12 deletions(-)

diff --git a/pages/wiki/syntax.txt b/pages/wiki/syntax.txt
index 45666e2..d426553 100644
--- a/pages/wiki/syntax.txt
+++ b/pages/wiki/syntax.txt
@@ -1,33 +1,107 @@
-~~Title: Example Page~~
-This will be some sample content. nothing more.
+~~Title: Wiki Syntax~~
 
+A title like the title of this page:
+
+<code>
+~~Title: Wiki Syntax~~
+</code>
+----
+
+How to define what programming language the rest of the page will be
+dealing with:
+
+<code>
+~~CODE-c~~
+</code>
+----
+
+A paragraph is simply text, on a single line or across multiple lines
+until a blank line before/after the section of text.
+
+<code>
+A paragraph is simply text, on a single line or across multiple lines
+until a blank line before/after the section of text.
+</code>
+
+----
+
+====== Level 1 Headline ======
+
+<code>
 ====== Level 1 Headline ======
+</code>
+
+----
 
-Paragraph here
+===== Level 2 Headline =====
 
+<code>
 ===== Level 2 Headline =====
+</code>
 
-Paragraph here
+----
 
 ==== Level 3 Headline ====
 
-Paragraph here
+<code>
+==== Level 3 Headline ====
+</code>
+
+----
 
 === Level 4 Headline ===
 
-Paragraph here
+<code>
+=== Level 4 Headline ===
+</code>
+
+----
 
 == Level 5 Headline ==
 
-A horizontal rule goes below.
+<code>
+== Level 5 Headline ==
+</code>
+
+----
+
+A horizontal rule is like
 
 ----
 
-This is the first paragraph of the page. We should test a long one to
-see how wrapping and other formatting works with it. **Bold Text**
-works. //Italic Text// also works. __Underlined Text__ is fine as
-well. ''Monospaced Text'' is there too. <del>Strike-through Text</del>
-is also not a problem.
+<code>
+----
+</code>
+
+----
+
+Within text you can do **Bold Text**, //Italic Text//, __Underlined
+Text__, and ''Monospaced Text'' as well as <del>Strike-through
+Text</del>.
+
+<code>
+Withing  text you can do **Bold Text**, //Italic Text//, __Underlined
+Text__, and ''Monospaced Text'' as well as <del>Strike-through
+Text</del>.
+</code>
+
+----
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
   - Ordered List Item
   - Item 2

-- 


Reply via email to