StaticServer Git repository
| Rev. | Time | Author | Message |
|---|---|---|---|
| 7a7872a | 2016-11-30 12:26:04 | Faustin Cailot | master StaticServer |
When a client requests a Markdown file(.md), the server will return an Html file instead of the requested Markdown file, the Html file contains all of content of the Markdown file and will render Markdown syntax into Html syntax on the client side.
Open Tools-StaticServer-Settings, add mime types for Markdown like below
{
"attempts": 5,
"autorun": false,
"interval": 500,
"mimetypes":
{
"": "application/octet-stream",
".c": "text/plain",
".h": "text/plain",
".markdown": "text/x-markdown; charset=UTF-8",
".md": "text/x-markdown; charset=UTF-8",
".py": "text/plain"
},
"port": 8080
}
Add Sublime Text 3 support.
Improvements - Add auto-start support, Thanks [sapara]
Bug fix:
While dragging new folders to Sublime or remove folders from Sublime, StaticServer cannot refresh it. Improvements
Bug fix: - Thread still alive and cannot stop.
Misc: - Move StaticServer.sublime-settings to User folder.
StaticServer can basically use
Know issues: