Locally view markdown files in a browser
npm install md-fileserver> Locally view markdown files in a browser.


Starts a local server to render "markdown" files within your browser:
- Runs on localhost:4000
- Supports [Markdown Syntax][] with [GFM][].
- Markdown rendering based on [markdown-it][].
Enabled Plugins for:
- Emojis
- Task lists
- Footnotes
- [KaTeX][]
- [MultiMarkdown table syntax][]
- Includes [markedpp][] as preprocessor.
- Supports syntax highlighting using [highlight.js][]
- For supported markdown syntax see [Cheatsheet][].
- Automatic update in browser after saving edited file. (Tested on Linux, MacOS, Windows)
- Support for [confluencer][]. Needs to be enabled in /config.
- Installation
- Usage
- Start the Local Server
- Open a markdown file
- Configuration
- Help
- Cheatsheet
- Personalisation
- Contribution
- License
- References
``bash`
npm install -g md-fileserver
In your terminal type:
``
mdstart
Open the given link
navigate to the markdown file.
Note: The local server can only be reached from your local computer on port 4000.
Any remote access from other computers to your files is denied.
An internal session is used, so you'll need to either start with a file or use the provided
link with the session parameter.
Type in your terminal:
``
mdstart
This will open the default browser with the processed markdown file.
``
mdstart /config

``
mdstart --help
or
``
man mdstart
``
mdstart /cheatsheet
[Cheatsheet][]
In config.js you can change several settings to fit your needs. These include:
- Browser: Default browser of MacOS, Linux or Windows is used.
- Markdown options: Change the options how [markdown-it][] processes your markdown files.
- Markdown PP options: Change the options how [markedpp][] pre-processes your markdown files.
Install personalized version:
1. Clone this repo
``
git clone --depth 2 https://github.com/commenthol/md-fileserver.git
cd md-fileserver
2. Make your changes in ./config.jsnpm run build
3. Run the build command so all assets are created .npm i -g
4. Install with from same folder. npm un -g`
If there are issues with installing you'll need to uninstall first with
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work.
Copyright (c) 2014-present commenthol
Software is released under [MIT License][].
Bundled fonts from [KaTeX][] by Khan Academy - https://github.com/Khan/KaTeX -
License (Fonts: SIL OFL 1.1, Code: MIT License)
- [Cheatsheet][Cheatsheet]
- [confluencer][confluencer]
- [GFM][GFM]
- [highlight.js][highlight.js]
- [KaTeX][KaTeX]
- [Markdown Syntax][Markdown Syntax]
- [markdown-it][markdown-it]
- [markedpp][markedpp]
- [MIT License][MIT License]
- [MultiMarkdown table syntax][MultiMarkdown table syntax]
[KaTeX]: https://katex.org/
[MultiMarkdown table syntax]: https://npmjs.com/package/markdown-it-multimd-table
[confluencer]: https://npmjs.com/package/confluencer
[Cheatsheet]: test/cheatsheet.md
[GFM]: https://help.github.com/articles/github-flavored-markdown
[highlight.js]: http://highlightjs.org
[markdown-it]: https://github.com/markdown-it/markdown-it
[markedpp]: https://github.com/commenthol/markedpp
[Markdown Syntax]: http://daringfireball.net/projects/markdown/syntax
[MIT License]: ./LICENSE