We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb7f5e1 commit ca44bcfCopy full SHA for ca44bcf
2 files changed
Makefile
@@ -1,7 +1,13 @@
1
+INPUT_FILE = README.md
2
+OUTPUT_FILE = artifacts/python-for-coding-interview.pdf
3
+
4
.PHONY: linter
5
linter:
6
markdownlint README.md --disable MD013
7
8
.PHONY: pdf
9
pdf:
- pandoc README.md -V geometry:margin=1in --pdf-engine=xelatex -o artifacts/python-for-coding-interview.pdf
10
+ pandoc $(INPUT_FILE) \
11
+ --pdf-engine=xelatex \
12
+ -M date="`date "+%B%e, %Y"`" \
13
+ -o $(OUTPUT_FILE)
README.md
@@ -1,4 +1,10 @@
-# Python for coding interviews
+---
+title: Python for Coding Interviews
+subtitle: <https://github.com/mmicu/python-for-coding-interviews>
+geometry: margin=1in
+# Introduction
List of several and useful `Python` data structures to know for coding interviews.
0 commit comments