View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.pyc |
View Demo of plantUML in ipython notebook.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View plantuml_magics.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
An Plantuml extension for generating UML figures from within ipython notebook. | |
Source: http://stackoverflow.com/questions/20303335/ipython-notebook-plantuml-extension | |
See example notebook at: http://nbviewer.ipython.org/gist/sberke/bb90ff09193a8888d7f7 | |
""" | |
import os | |
from IPython.core.magic import magics_class, cell_magic, Magics | |
from IPython.display import Image, SVG |