diff options
author | Brett Walker <brett@digitalmoksha.com> | 2018-06-14 08:30:16 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-06-14 08:30:16 +0000 |
commit | f79410fe1772798d7fa1b288880e14e806483c3c (patch) | |
tree | 8dd792d5ced0bb0e9b2f26ebae2cc9e28c2fd4a6 /spec/fixtures | |
parent | 458d18fef60abc3a1a94701514de7012295d6be5 (diff) | |
download | gitlab-ce-f79410fe1772798d7fa1b288880e14e806483c3c.tar.gz |
enable CommonMark as the default
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/markdown.md.erb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/spec/fixtures/markdown.md.erb b/spec/fixtures/markdown.md.erb index da32a46675f..e5d01c3bd03 100644 --- a/spec/fixtures/markdown.md.erb +++ b/spec/fixtures/markdown.md.erb @@ -43,8 +43,14 @@ This text says this, ~~and this text doesn't~~. ### Superscript -This is my 1^(st) time using superscript in Markdown. Now this is my -2^(nd). +This is my 1<sup>(st)</sup> time using superscript in Markdown. Now this is my +2<sup>(nd)</sup>. + +Redcarpet supports this superscript syntax ( x^2 ). + +### Subscript + +This (C<sub>6</sub>H<sub>12</sub>O<sub>6</sub>) is an example of subscripts in Markdown. ### Next step |