title after caption & caption in yaml
This commit is contained in:
parent
d7ab785b17
commit
834b20c9fe
@ -82,6 +82,7 @@ class Article:
|
|||||||
"spip_id_article": self.id,
|
"spip_id_article": self.id,
|
||||||
"spip_id_rubrique": self.section_id,
|
"spip_id_rubrique": self.section_id,
|
||||||
"spip_id_secteur": self.sector_id,
|
"spip_id_secteur": self.sector_id,
|
||||||
|
"spip_chapo": self.caption,
|
||||||
},
|
},
|
||||||
allow_unicode=True,
|
allow_unicode=True,
|
||||||
)
|
)
|
||||||
@ -89,12 +90,12 @@ class Article:
|
|||||||
def get_article(self) -> str:
|
def get_article(self) -> str:
|
||||||
# Build the final article text
|
# Build the final article text
|
||||||
article: str = "---\n" + self.get_frontmatter() + "---"
|
article: str = "---\n" + self.get_frontmatter() + "---"
|
||||||
# Add the title as a Markdown h1
|
|
||||||
if len(self.title) > 0:
|
|
||||||
article += "\n\n# " + self.title
|
|
||||||
# If there is a caption, add the caption followed by a hr
|
# If there is a caption, add the caption followed by a hr
|
||||||
if len(self.caption) > 0:
|
if len(self.caption) > 0:
|
||||||
article += "\n\n" + self.caption + "\n\n***"
|
article += "\n\n" + self.caption + "\n\n***"
|
||||||
|
# Add the title as a Markdown h1
|
||||||
|
if len(self.title) > 0:
|
||||||
|
article += "\n\n# " + self.title
|
||||||
# If there is a text, add the text preceded by two line breaks
|
# If there is a text, add the text preceded by two line breaks
|
||||||
if len(self.text) > 0:
|
if len(self.text) > 0:
|
||||||
article += "\n\n" + self.text
|
article += "\n\n" + self.text
|
||||||
|
Loading…
Reference in New Issue
Block a user