How to make presentation using markdow 如何使用markdown做报告
1. 安装 Markdown Presenter
git clone https://github.com/jsakamoto/MarkdownPresenter.git
2. 安装Ubuntu下的WebServer-webfs
sudo apt-get install webfs
或者使用python自带的web server
python -m SimpleHTTPServer
3. 新建或者编辑.md文件 presentation.md
This is a slide
Blah blah blah
!
This is another slide
Yada yada yada
4. 将写好的文件放到MarkdownPresenter
目录下,然后运行
python -m SimpleHTTPServer
或者运行
webfsd -F -p 8888 -r ~/scripts/MarkdownPresenter/ -f Presenter.html
5. 注意事项
The Presenter.html
fetches the presentation.md
from the server via Ajax, uses Showdown.js
to transform it into HTML.
所以.md文件必须命名为 presentation.md
,然后 webserver必须打开Presenter.html
.
That’s it!!