mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Document Reader.enabled attribute usage.
This commit is contained in:
parent
43e931baa4
commit
6fc6a4dac9
1 changed files with 8 additions and 1 deletions
|
|
@ -40,7 +40,8 @@ method, that is returning an HTML content and some metadata.
|
||||||
|
|
||||||
Take a look to the Markdown reader::
|
Take a look to the Markdown reader::
|
||||||
|
|
||||||
class MarkdownReader(object):
|
class MarkdownReader(Reader):
|
||||||
|
enabled = bool(Markdown)
|
||||||
|
|
||||||
def read(self, filename):
|
def read(self, filename):
|
||||||
"""Parse content and metadata of markdown files"""
|
"""Parse content and metadata of markdown files"""
|
||||||
|
|
@ -59,6 +60,12 @@ Take a look to the Markdown reader::
|
||||||
|
|
||||||
Simple isn't it ?
|
Simple isn't it ?
|
||||||
|
|
||||||
|
If your new reader requires additional Python dependencies then you should wrap
|
||||||
|
their `imports` statements in `try...except`. Then inside the reader's class
|
||||||
|
set the `enabled` class attribute to mark import success or failure. This makes
|
||||||
|
it possible for users to continue using their favourite markup method without
|
||||||
|
needing to install modules for all the additional formats they don't use.
|
||||||
|
|
||||||
How to implement a new generator ?
|
How to implement a new generator ?
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue