-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Description
Markdown is meant to be a human-readable document format and some PScribo options aren't well suited to its output (unless converted to Html by a parser/renderer). Whilst working on the Markdown plugin, several rendering questions have arisen and I'd like the community's feedback.
-
Should headers and footers be included in Markdown (
.md
) documents?- Personally, I don't think so as there is no concept of pages in the specification and it obfuscates the actual content
- I know headers/footers are in the Text output, but they should probably be removed from there too for the same reason!
- When the
.md
file is rendered in Html, there is no pseudo pagination like the PScribo Html plugin
- Personally, I don't think so as there is no concept of pages in the specification and it obfuscates the actual content
-
Should image data be included at the bottom of the Markdown (
.md
) document?- I am unsure with this one; including the image data means the resulting
.md
file can be converted to Html without any external dependencies but makes the .md file very messy/cluttered - Using traditional web/file links is cleaner, but does require the image source to be accessible when the
.md
file is rendered/converted into Html - It seems counterintuitive to try and shoehorn binary data when the resulting document should be human-readable
- I am unsure with this one; including the image data means the resulting
Any feedback is greatly appreciated!
Thanks, Iain