Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isnowfy/pydown
An HTML5 presentation builder written by python
https://github.com/isnowfy/pydown
Last synced: 6 days ago
JSON representation
An HTML5 presentation builder written by python
- Host: GitHub
- URL: https://github.com/isnowfy/pydown
- Owner: isnowfy
- License: mit
- Created: 2013-04-14T11:28:07.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T03:26:03.000Z (over 7 years ago)
- Last Synced: 2024-10-31T22:32:23.522Z (11 days ago)
- Language: Python
- Size: 693 KB
- Stars: 689
- Watchers: 25
- Forks: 75
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# pydown
pydown is another "Presentation System in a single HTML page" written by python inspired by [keydown](https://github.com/infews/keydown).Like keydown it uses the [deck.js](http://imakewebthings.github.com/deck.js) and its extentions for the presentation.
## Demo
[http://isnowfy.github.io/pydown/](http://isnowfy.github.io/pydown/)## Usage
### Write your slides in markdown
Edit slides.md
~~~~
!SLIDE# Hello
!SLIDE
# Another slide
!SLIDE left
# left
~~~~### Generate the html
~~~~
$ python main.py slides.md slides
~~~~or you can install pydown to run it with `pydown`
Thanks for [sloria](https://github.com/sloria)
~~~~
$ pip install python-pydown
$ pydown slides.md slides
~~~~This will make:
~~~~
| - slides/
| - css/
| - js/
| - index.html
~~~~### Slide classes
Any text follows !SLIDE will be added to the slide as css classes
~~~~
!SLIDE left
~~~~### Syntax Highlighting
For python
~~~~{python}
def test():
print 'hello'
~~~~### Markdown syntax
[English version](http://daringfireball.net/projects/markdown/syntax)
[Chinese version](https://gitcafe.com/riku/Markdown-Syntax-CN/)