hyper-markdown-preview
hyper-markdown-preview copied to clipboard
Preview Markdown files right from your Hyper Terminal!
hyper-markdown-preview
A plugin to preview markdown files in your Hyper term.
Usage
Just type the location of your markdown file in your terminal.

Install
Add the hyper-markdown-preview to your .hyper.js config file.
module.exports = {
//...
plugins: [
`hyper-markdown-preview`
],
//...
}
Config
Since version 1.1 you can configure the stylesheets to use when rendering the markdown.
module.exports = {
config: {
// ...
hyperMarkdownPreview: {
stylesheet: 'github' // github | none
}
}
// ...
}