mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Get HtmlReader to work again
wrote unit tests and documentation, improved regular expression. The HtmlReader is enabled by default now and parses metadata in html files of the form: <!-- key:value -->
This commit is contained in:
parent
88555de28c
commit
39db9ddcfd
7 changed files with 72 additions and 15 deletions
|
|
@ -73,7 +73,8 @@ class TestArticlesGenerator(unittest.TestCase):
|
|||
[u'This is an article with category !', 'published', 'yeah', 'article'],
|
||||
[u'This is an article without category !', 'published', 'Default', 'article'],
|
||||
[u'This is an article without category !', 'published', 'TestCategory', 'article'],
|
||||
[u'This is a super article !', 'published', 'yeah', 'article']
|
||||
[u'This is a super article !', 'published', 'yeah', 'article'],
|
||||
[u'A great html article with metadata', 'published', u'yeah', 'article']
|
||||
]
|
||||
self.assertItemsEqual(articles_expected, articles)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue