Daily Shaarli

All links of one day in a single page.

July 6, 2016

Markdown Guide
thumbnail

Headers

H1 : # Header 1
H2 : ## Header 2
H3 : ### Header 3
H4 : #### Header 4
H5 : ##### Header 5
H6 : ###### Header 6

Text Styling

Links : [Title](http://URL)
Bold : **Bold**
Italicize : *Italics*
Strike-through : ~~text~~
Highlight : ==text==
Inline Code : `code` 
Image : ![alt](http://)
Paragraphs : Line space between paragraphs
Line break : Add two spaces to the end of the line
Lists : * an asterisk for every new list item.
Quotes : > Quote
Inline Code : `alert('Hello World');`
Horizontal Rule (HR) : --------

Writing Code

Inline code can be added using single back-ticks E.g.alert('Hello World')`.

For code blocks, Ghost supports both standard markdown code blocks and the syntax from GitHub Flavored Markdown (GFM). Standard markdown works by indenting code lines with 4 spaces:

<header>
    <h1>{{title}}</h1>
</header>

GFM uses triple back-ticks ```

<header>
    <h1>{{title}}</h1>
</header>