wip: fix module order
This commit is contained in:
parent
6983ea89ed
commit
d46937e20f
|
@ -70,17 +70,17 @@ def wip_article(target):
|
||||||
|
|
||||||
global post_header, article_header
|
global post_header, article_header
|
||||||
global post_bottom, article_bottom
|
global post_bottom, article_bottom
|
||||||
|
|
||||||
# Protect inline-codes
|
|
||||||
tyto.protect_icodes(post_bottom, article_bottom)
|
|
||||||
post_bottom = tyto.protect_article.rsplit('\n')
|
|
||||||
article_bottom = tyto.protect_article
|
|
||||||
|
|
||||||
# Protect block-codes and quotes
|
# Protect block-codes and quotes
|
||||||
tyto.protect_bcodes_quotes('wip', post_bottom, article_bottom)
|
tyto.protect_bcodes_quotes('wip', post_bottom, article_bottom)
|
||||||
post_bottom = tyto.protect_article.rsplit('\n')
|
post_bottom = tyto.protect_article.rsplit('\n')
|
||||||
article_bottom = tyto.protect_article
|
article_bottom = tyto.protect_article
|
||||||
|
|
||||||
|
# Protect inline-codes
|
||||||
|
tyto.protect_icodes(post_bottom, article_bottom)
|
||||||
|
post_bottom = tyto.protect_article.rsplit('\n')
|
||||||
|
article_bottom = tyto.protect_article
|
||||||
|
|
||||||
# Convert contents from modules
|
# Convert contents from modules
|
||||||
wip_single_tags() # br /, anchors
|
wip_single_tags() # br /, anchors
|
||||||
wip_words_tags() # Paragraphs, strongs, italics
|
wip_words_tags() # Paragraphs, strongs, italics
|
||||||
|
|
Loading…
Reference in New Issue