##// END OF EJS Templates
fix typo in v2 convert...
fix typo in v2 convert resulted in NameError on orig_version because arg name is from_version

File last commit:

r16265:500d6fe8
r16707:98d54694
Show More
__init__.py
10 lines | 331 B | text/x-python | PythonLexer
Brian E. Granger
Fixing import logic.
r11088 from .export import *
Jonathan Frederic
HTML-Slides -> Slides-Reveal
r11744 from .html import HTMLExporter
from .slides import SlidesExporter
Jonathan Frederic
Rebase changes made by hand
r12505 from .templateexporter import TemplateExporter
Brian E. Granger
Fixing import logic.
r11088 from .latex import LatexExporter
from .markdown import MarkdownExporter
MinRK
add PDFExporter...
r16265 from .pdf import PDFExporter
Brian E. Granger
Fixing import logic.
r11088 from .python import PythonExporter
MinRK
RST class capitalization
r11449 from .rst import RSTExporter
Jonathan Frederic
Rebase changes made by hand
r12505 from .exporter import Exporter