mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-11 00:58:31 +02:00
Enable FancyExporter plugin
This commit is contained in:
parent
3d1b226871
commit
6a5726acd2
1 changed files with 2 additions and 1 deletions
|
@ -11,8 +11,9 @@ from .tag_exporter import TagExporter
|
||||||
from .xml_exporter import XMLExporter
|
from .xml_exporter import XMLExporter
|
||||||
from .yaml_exporter import YAMLExporter
|
from .yaml_exporter import YAMLExporter
|
||||||
from .template_exporter import __all__ as template_exporters
|
from .template_exporter import __all__ as template_exporters
|
||||||
|
from .fancy_exporter import FancyExporter
|
||||||
|
|
||||||
__exporters =[JSONExporter, MarkdownExporter, TagExporter, TextExporter, XMLExporter, YAMLExporter] + template_exporters
|
__exporters =[JSONExporter, MarkdownExporter, TagExporter, TextExporter, XMLExporter, YAMLExporter, FancyExporter] + template_exporters
|
||||||
__importers =[JRNLImporter]
|
__importers =[JRNLImporter]
|
||||||
|
|
||||||
__exporter_types = dict([(name, plugin) for plugin in __exporters for name in plugin.names])
|
__exporter_types = dict([(name, plugin) for plugin in __exporters for name in plugin.names])
|
||||||
|
|
Loading…
Add table
Reference in a new issue