summaryrefslogtreecommitdiff
path: root/IDEA.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-02-12 16:11:06 +0000
committerPaul Buetow <paul@buetow.org>2022-02-12 16:11:06 +0000
commitc3388eeefcadda34acc6adf88c9804c27a7ac8af (patch)
tree893f7a12248bd399beba9bb41f73c34f7caf68fd /IDEA.md
parent37df119bec4cc3779132d2c532c84dd42dc8278b (diff)
idea about git
Diffstat (limited to 'IDEA.md')
-rw-r--r--IDEA.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/IDEA.md b/IDEA.md
index 5da8005..7b4c590 100644
--- a/IDEA.md
+++ b/IDEA.md
@@ -1,5 +1,9 @@
# IDEAs
+## Maybe don't store results in Git
+
+Just generate the output formats (such as html, md...) and use rsync to push the content to the server. No need to use Git here. Only keep the original .gmi files in git.
+
## Parallel job processing queue
Currently, in order to speed up, Gemtexter forks on certain functions and loops and joins (via `wait`) on the sub-processes. This however can be a problem once a user max process limit is reached.
@@ -10,7 +14,6 @@ Use s.t. like `pgrep -c -P$$` to determine how many sub-processes are already ac
I could use pandoc for this (convert from Markdown to PDF). This works on Fedora Linux 34:
-
```
sudo dnf install pandoc wkhtmltopdf
pandoc FOO.md --pdf-engine=wkhtmltopdf --output FOO.pdf