Skip to content

Instantly share code, notes, and snippets.

@nombrekeff
Last active November 26, 2017 13:34
Show Gist options
  • Save nombrekeff/0c98255a5e35d90a9cd236d201259a7f to your computer and use it in GitHub Desktop.
Save nombrekeff/0c98255a5e35d90a9cd236d201259a7f to your computer and use it in GitHub Desktop.
Documentation for RALLF markdown, markdown to style your task's description

logo RALLF Markdown

Simple markdown to style your tasks description

Available Markdown

**bold** _italic_ `code` [text](url)
Renders As bold italic code link

Available Headers

h3 - ### h3

h4 - #### h4

h5 - ##### h5
h6 - ###### h6

Some tips

  • To create a new line just add a space at the end of the line followed by a new line

    To create a new line you need a space at the end (\n)
    followed by a new line (\n) no need to put (\n) just hit intro
    
  • If there is no space it will continue in the same line

    If a new line has no space at the end(\n) it will continue in the same line
    

Examples

Ignore '\s' it just to explain that you need a space at the end of the line to create a line break

  #### Header
  This is an example of how **ralf_markdown** works\s
  Docs [here](http://...)\s

  ##### Smaller Header\s
  _Italic text_ **Bold Text** `Code`\s

  If no space at the end
  it will continue in the same line

Will render as

Header

This is an example of how ralf_markdown works Docs here

Smaller Header

Italic text Bold Text Code

If no space at the end it will continue in the same line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment