diff --git a/.gitignore b/.gitignore index 1ee84da..f9da67a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +_tmp/ *.sw* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1634cf8 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +all: + mkdir -p ./_tmp + pandoc -f docx -t markdown ./srd/Cypher-System-Reference-Document-2024-09-26.docx -o ./_tmp/csrd.md --columns 120 + cp -a ./_tmp/csrd.md ./_tmp/ccsrd.md + find patches/base -type f -name *.patch -print0 | xargs -0 -n 1 patch ./_tmp/ccsrd.md + +clean: + rm -rf ./_tmp diff --git a/patches/base/001-publication-name-and-compatibility-notice.patch b/patches/base/001-publication-name-and-compatibility-notice.patch new file mode 100644 index 0000000..1853cd7 --- /dev/null +++ b/patches/base/001-publication-name-and-compatibility-notice.patch @@ -0,0 +1,10 @@ +--- _tmp/csrd.md 2025-04-03 23:35:35.302917472 -0500 ++++ _tmp/ccsrd.md 2025-04-03 23:39:04.112026972 -0500 +@@ -1,4 +1,6 @@ +-CYPHER SYSTEM REFERENCE DOCUMENT 2024-07-02 ++COMMONS CYPHER SYSTEM REFERENCE DOCUMENT v0.0.1 ++ ++Compatible with the Cypher System. Based on the Cypher System Reference Document, 2024-07-02. + + How to Play the Cypher System + diff --git a/srd/Cypher-System-Reference-Document-2024-09-26.docx b/srd/Cypher-System-Reference-Document-2024-09-26.docx new file mode 100644 index 0000000..111e129 Binary files /dev/null and b/srd/Cypher-System-Reference-Document-2024-09-26.docx differ