Markdown test for reallyreallyreally long titles

Opening paragraph. Stevenson had long been intrigued by the idea of how personalities can affect a human and how to incorporate the interplay of good and evil into a story. While still a teenager, he developed a script for a play about Deacon Brodie, which he later reworked with the help of W. E. Henley and saw produced for the first time in 1882.

Normal paragraph

It’s very easy to make some words bold and other words italic with Markdown. You can even link to Google! End. Start

CrossPostLink

Text

Stevenson had long been intrigued by the idea of how personalities can affect a human and how to incorporate the interplay of good and evil into a story. While still a teenager, he developed a script for a play about Deacon Brodie, which he later reworked with the help of W. E. Henley and saw produced for the first time in 1882. In early 1884 he wrote the short story “Markheim”, which he revised in 1884 for publication in a Christmas annual. One night in late September or early October 1885, possibly while he was still revising “Markheim,” Stevenson had a dream, and upon wakening had the intuition for two or three scenes that would appear in the story.

Character counter

40---00010-----00020-----00030-----00040 80---00010-----00020-----00030-----00040-----00050-----00060-----00070-----00080

Emphasis

This text will be italic This will also be italic

This text will be bold This will also be bold

Strikethrough example Strikethrough

You can combine them

Lists

Sometimes you want numbered lists:

  1. One
  2. Two
  3. Three

Sometimes you want bullet points:

  • Start a line with a star
  • Profit!

Alternatively,

  • Dashes work just as well
  • And if you have sub points, put two spaces before the dash or star:
    • Like this
    • And this

Quotes

“Coffee. The finest organic suspension ever devised… I beat the Borg with it.”

  • Captain Janeway

Headings

Headings 3

Headings 4

Table

Left-AlignedCenter AlignedRight Aligned
col 3 issome wordy text$1600
col 2 iscentered$12
zebra stripesare neat$1

Table example

Math (docs)

Some math on the same line: Tn=a+(n1)dT_n = a + (n-1)d , a2+b2=c2a^2 + b^2 = c^2, Data=PCs×Loadings\mathsf{Data = PCs} \times \mathsf{Loadings}, Xn,p=An,kBk,p\mathbf{X}_{n,p} = \mathbf{A}_{n,k} \mathbf{B}_{k,p}

Or, some math in a block

Tn=a+(n1)dT_n = a + (n-1)d

Code

Inline

Here is some inline code in the middle of sencence

Code block

Github style:

/**
* A namespace for utility methods.
*/
util: {
encode: function encode(tokens) {
if (tokens instanceof Token) {
return new Token(tokens.type, encode(tokens.content), tokens.alias);
} else if (Array.isArray(tokens)) {
return tokens.map(encode);
} else {
return tokens.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/\u00a0/g, ' ');
}
},
}
// some comment here!

With figcaption

def show
puts "Outputting a very lo-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-ong lo-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-ong line"
@widget = Widget(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
a += 1 # comment
end
end
# comment 1
# comment 1
# comment 1
# comment 1
# comment 1

MNIST samples. Image taken from Michael Nielsen’s “Neural Networks and Deep Learning”. Distributed under MIT Licence. a2+b2=c2a^2 + b^2 = c^2 Example

Image

An example alt text - BlogImage

MNIST samples. Image taken from Michael Nielsen’s “Neural Networks and Deep Learning”. Distributed under MIT Licence. a2+b2=c2a^2 + b^2 = c^2 Example

Thanks for reading!