You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FAQ.md
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ raw code
69
69
```
70
70
~~~
71
71
72
-
## How do I know what markdown formatting is supported (there are so many different version)?
72
+
## How do I know what Markdown formatting is supported (there are so many different version)?
73
73
74
74
In `osert.rb`, `markdown`[is used](https://github.com/noraj/OSCP-Exam-Report-Template-Markdown/blob/50aeada2b6171c3a4fe96d91a10f632d752063f2/generate.rb#L82-L93) as `--to` formatter for `pandoc` which means it will use [Pandoc markdown](https://pandoc.org/MANUAL.html#pandocs-markdown) (similar to GFM [[1](https://docs.gitlab.com/ee/user/markdown.html)][[2](https://github.github.com/gfm/)].) Else other syntaxes (commonmark, GFM, MultiMarkdown, PHP Markdown Extra) are supported too, see [pandoc options](https://pandoc.org/MANUAL.html#option--to). If you want to use another syntax you can generate your report using the [manual command](https://github.com/noraj/OSCP-Exam-Report-Template-Markdown#manual).
75
75
@@ -85,7 +85,14 @@ Issue tracking:
85
85
- this project: [#21](https://github.com/noraj/OSCP-Exam-Report-Template-Markdown/issues/21)
A workaround is to prepare the markdown file with with a script (ex: [awk script](https://github.com/noraj/OSCP-Exam-Report-Template-Markdown/discussions/66)) to hard wrap lines on code blocks yourself. It's like adding newlines manually but automatically.
88
+
A workaround is to prepare the markdown file with a script (ex: [awk script](https://github.com/noraj/OSCP-Exam-Report-Template-Markdown/discussions/66)) to hard wrap lines on code blocks yourself. It's like adding newlines manually but automatically.
89
+
90
+
Another workaround, is to add these two lines in the YAML front-matter of your Markdown file:
0 commit comments