From 629308b29619d351f2f3497f9d62f68b0c6d0e13 Mon Sep 17 00:00:00 2001 From: John Haverlack Date: Thu, 6 Nov 2025 10:11:15 -0900 Subject: [PATCH] Updated Readme --- README.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/README.md b/README.md index 5762daf..0cbc138 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,49 @@ # beautiful-book-builder This is a basic book builder template based on a Pandoc build process in conjunction with a number of other tools to generate PDF, ODT, HTML, LaTex, and Epub book formats from Markdown source content in an Obsidian vault. + +## Directory Structure + +``` +beautiful-book-builder/ +├── build (Target Destination for Final Outputs) +├── chapters (Input Content for the Book) +├── conf (Configuration for the Pandoc Builds) +├── filters (Filters to control document type formatting) +├── lib (Libaries for the Build Process) +│   ├── citations +│   ├── diag +│   ├── img +│   └── mathjax +├─── scripts (Future Setup Script) +│ └── deps +└── build.sh (Old Build Script, Depricated in favor of Make) +``` + +## Usage +#### PDF + +``` +make pdf +``` +#### HTML + +``` +make html +``` +#### LaTex + +``` +make latex +``` +#### EPub + +> Note: This configuration still needs work. + +``` +make epub +``` + ## Dependencies For Debian / ZorinOS and likely Ubuntu based systems.