mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-09-07 05:14:03 +07:00
Add markdown format support (#25)
Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>
This commit is contained in:
31
node_modules/showdown/test/ghost/markdown-magic.html
generated
vendored
Normal file
31
node_modules/showdown/test/ghost/markdown-magic.html
generated
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<h3 id="automaticlinks">Automatic Links</h3>
|
||||
<pre><code>https://ghost.org
|
||||
</code></pre>
|
||||
<p><a href="https://ghost.org">https://ghost.org</a></p>
|
||||
<h3 id="markdownfootnotes">Markdown Footnotes</h3>
|
||||
<pre><code>The quick brown fox[^1] jumped over the lazy dog[^2].
|
||||
|
||||
[^1]: Foxes are red
|
||||
[^2]: Dogs are usually not red
|
||||
</code></pre>
|
||||
<p>The quick brown fox[^1] jumped over the lazy dog[^2].</p>
|
||||
<h3 id="syntaxhighlighting">Syntax Highlighting</h3>
|
||||
<pre><code>```language-javascript
|
||||
[...]
|
||||
```
|
||||
</code></pre>
|
||||
<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
|
||||
var Promise = require('bluebird'),
|
||||
_ = require('lodash'),
|
||||
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>
|
Reference in New Issue
Block a user