test(ghost): ignore footnotes test

Ignore footnotes tests since we don't have this feature in showdown
This commit is contained in:
Estevão Soares dos Santos 2015-07-14 21:10:00 +01:00
parent 534c53616a
commit bf8b3649ad

View File

@ -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>
<pre><code class="language-javascript language-language-javascript">// # Notifications API
// RESTful API for creating notifications // RESTful API for creating notifications
var Promise = require('bluebird'), <br /> var Promise = require('bluebird'),
_ = require('lodash'), _ = require('lodash'),
canThis = require('../permissions').canThis, canThis = require('../permissions').canThis,
errors = require('../errors'), errors = require('../errors'),
utils = require('./utils'),</p> utils = require('./utils'),
<pre><code>// Holds the persistent notifications // Holds the persistent notifications
notificationsStore = [], notificationsStore = [],
// Holds the last used id // Holds the last used id
notificationCounter = 0, notificationCounter = 0,
notifications; notifications;
</code></pre> </code></pre>
<p>```</p>