diff mbox series

[RFC,selinux-notebook,01/18] build: explicitly enable pandoc pipe_tables

Message ID 159650480312.8961.3858639968171830656.stgit@sifl (mailing list archive)
State Accepted
Headers show
Series markdown conversions and cleanups | expand

Commit Message

Paul Moore Aug. 4, 2020, 1:33 a.m. UTC
As of July 2020 GitHub Markdown supports pipe tables.

Signed-off-by: Paul Moore <paul@paul-moore.com>
---
 Makefile |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 9bd0ffa..f41bb16 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,8 @@  PDF_OUT = SELinux_Notebook.pdf
 
 SED = sed
 PANDOC = pandoc
-PANDOC_OPTS=-V mainfont='DejaVu Serif' -V monofont='DejaVu Sans Mono'
+PANDOC_OPTS  = --from markdown+pipe_tables
+PANDOC_OPTS += -V mainfont='DejaVu Serif' -V monofont='DejaVu Sans Mono'
 
 # the individual section files, in order
 FILE_LIST = $(shell cat src/section_list.txt)