We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3331f68 + 65f6b55 commit 2094950Copy full SHA for 2094950
makefile
@@ -1,7 +1,11 @@
1
# Used for local processing
2
3
-all: lint
+all: lint toc.md
4
5
lint:
6
markdownlint --config .github/linters/.markdown-lint.yml \
7
secure_software_development_fundamentals.md
8
+
9
+toc.md: lint secure_software_development_fundamentals.md tocignore
10
+ grep -E '^#{1,3} ' secure_software_development_fundamentals.md | \
11
+ grep -E -v -f tocignore | sed 's/^# Part /Part /' > toc.md
tocignore
@@ -0,0 +1,5 @@
+\#+ Secure Software Development Fundamentals
+\#+ Table of contents
+\#+ Quiz .*
+\#+ .* Final Exam
+\#+ Education Team Requirements
0 commit comments