mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
test(ghost): ignore footnotes test
Ignore footnotes tests since we don't have this feature in showdown
This commit is contained in:
parent
534c53616a
commit
bf8b3649ad
|
@ -13,26 +13,28 @@
|
||||||
[^2]: Dogs are usually not red
|
[^2]: Dogs are usually not red
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>The quick brown fox<sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> jumped over the lazy dog<sup id="fnref:2"><a href="#fn:2" rel="footnote">2</a></sup>.</p>
|
<p>The quick brown fox[^1] jumped over the lazy dog[^2].</p>
|
||||||
|
|
||||||
<h3 id="syntaxhighlighting">Syntax Highlighting</h3>
|
<h3 id="syntaxhighlighting">Syntax Highlighting</h3>
|
||||||
|
|
||||||
<pre><code>https://ghost.orglanguage-javascript
|
<pre><code>```language-javascript
|
||||||
|
[...]
|
||||||
|
```
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>// # Notifications API
|
<p>Combined with <a href="http://prismjs.com/">Prism.js</a> in the Ghost theme:</p>
|
||||||
// RESTful API for creating notifications
|
|
||||||
var Promise = require('bluebird'), <br />
|
|
||||||
_ = require('lodash'),
|
|
||||||
canThis = require('../permissions').canThis,
|
|
||||||
errors = require('../errors'),
|
|
||||||
utils = require('./utils'),</p>
|
|
||||||
|
|
||||||
<pre><code>// Holds the persistent notifications
|
<pre><code class="language-javascript language-language-javascript">// # Notifications API
|
||||||
notificationsStore = [],
|
// RESTful API for creating notifications
|
||||||
// Holds the last used id
|
var Promise = require('bluebird'),
|
||||||
notificationCounter = 0,
|
_ = require('lodash'),
|
||||||
notifications;
|
canThis = require('../permissions').canThis,
|
||||||
|
errors = require('../errors'),
|
||||||
|
utils = require('./utils'),
|
||||||
|
|
||||||
|
// Holds the persistent notifications
|
||||||
|
notificationsStore = [],
|
||||||
|
// Holds the last used id
|
||||||
|
notificationCounter = 0,
|
||||||
|
notifications;
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<p>```</p>
|
|
Loading…
Reference in New Issue
Block a user