diff options
author | Ryan Mavilia <ryanmavilia@gmail.com> | 2016-01-17 04:04:41 -0500 |
---|---|---|
committer | Ryan Mavilia <ryanmavilia@gmail.com> | 2016-01-17 04:04:41 -0500 |
commit | b253b8e4cba10dc28023e613498473f78e3a17ad (patch) | |
tree | 8a79ede5d41d63da4d7bafe343bbfdf18afc7700 /asciidoc.html.markdown | |
parent | 0bd64705a8096ed1ad808653bd88f1372533dd47 (diff) |
Rename asciidoc.markdown to asciidoc.html.markdown
Diffstat (limited to 'asciidoc.html.markdown')
-rw-r--r-- | asciidoc.html.markdown | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/asciidoc.html.markdown b/asciidoc.html.markdown new file mode 100644 index 00000000..b98d0fa9 --- /dev/null +++ b/asciidoc.html.markdown @@ -0,0 +1,66 @@ +--- +language: asciidoc +contributors: + - ["Ryan Mavilia", "http://unoriginality.rocks/:] +filename: asciidoc.md +--- + +AsciiDoc is a markup language similar to Markdown and it can be used for anything from books to blogs. Created in 2002 by Stuart Rackham the language is simple but it allows for a great amount of customization. + +Document Header + +Headers are optional and can't contain blank lines. It must be offset from content by at least one blank line. + +Title Only + +```asciidoc += Document Title + +First sentence of document. +``` + +Title and Author + +```asciidoc += Document Title +First Last <first.last@learnxinyminutes.com> + +Start of this document. +``` + +Multiple Authors +```asciidoc += Document Title +John Doe <john@go.com>; Jane Doe<jane@yo.com>; Black Beard <beardy@pirate.com> + +Start of a doc with multiple authors. +``` + +Revision Line (requires an author line) +```asciidoc += Doc Title V1 +Potato Man <chip@crunchy.com> +v1.0, 2016-01-13 + +This article about chips is going to be fun. +``` + +Section Titles + +```asciidoc += Level 0 (may only be used in document's header) + +== Same as <h2> + +=== Same as <h3> + +==== Same as <h4> + +===== Same as <h5> + +====== Same as <h6> + +======= Same as <h7> + +``` + |