The Markdown parser used on the forums at meh.com.
- Converts URL-like text to links.
- Converts image URLs to images.
- Optionally detects image sizes.
- External links open in a new browser tab/window.
- Automatic detection of
@usernames
. - Support for tables in GitHub Flavored Markdown syntax.
- Typographic replacements for
(c) (r) (tm) (p) +- ... !!! ??? --
. - “Smartypants, double quotes” and ‘single quotes’
- Support for strikethrough using the
~~strikethrough~~
syntax. - Support for adding anchors to headers.
- Better linebreak/newline support.
- Supports common emoji :shortnames:.
- Supports native unicode emoji: 😄.
- Supports ASCII smileys: :).
- Image URLs are converted to images.
- imgur GIFV URLs are converted to high quality looping GIF videos.
- Kickstarter URLs are converted to campaign previews.
- Reddit permalink URLs are converted to embeddable comment threads.
- SoundCloud URLs are converted to audio players.
- Twitter status URLs are converted to embeddable tweets.
- Vimeo URLs are converted to video players.
- Vine URLs are converted to video players.
- YouTube URLs are converted to video players.
/8ball question
- Ask the Magic 8-Ball a question/captionbot image-url
- Get a caption for an image/coinflip heads or tails
- Flip a coin/cowsay text or --help
- ASCII cow with a message/emojify text
- Swap out words with emoji/giphy text
- Post a random GIF/image text
- Post a random image/shrug
- ¯\_(ツ)_/¯/woot text
- Search for deals on woot.com/youtube text
- Post a random YouTube video
[b], [code], [i], [img], [quote], [s], [url], [youtube]
var mehdown = require('mehdown');
mehdown.render('markdown text here', { baseUrl: 'https://meh.com', commands: true, detectImageSizes: false }, function(err, html) {
console.log(html);
});