socadk / design-practice-repository

Summaries of artifacts, templates, practices, and techniques for agile architecting (DPR-mm) and service design (SDPR-nn).
https://socadk.github.io/design-practice-repository/
Other
133 stars 20 forks source link

Checklist for GitPages release #12

Open socadk opened 3 years ago

socadk commented 3 years ago
socadk commented 3 years ago

Something to be aware of: (from https://leanpub.com/markua/read#leanpub-auto-newlines)

In Markdown, to output a forced line break (a <br/> tag in HTML), you need to add two spaces at the end of the line, followed by a single newline. This means that it is impossible to look at a Markdown document with single newlines in it and understand what they mean: you need to find out if there are invisible formatting characters at the end of the line to find out if the newlines mean “newline” or “single space”.

koppor commented 3 years ago

In case it helps: The other alternative to create newlines in Markdown is to use \:

First line\
second line.

Rendered output:

First line\ second line.

socadk commented 3 years ago

Scripted now, some manual postprocessing might be needed (depending on build steps, full vs. incremental)

socadk commented 3 years ago