uni

Thing1's amazing uni repo
Log | Files | Refs

commit 0f101d0defcabe7183d4ff330fa00bdc5656f052
parent f9b259de40bf2bb68314eca1f149c720fbb8f7ae
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Mon, 29 Sep 2025 08:19:31 +0100

Switched to markdown from groff

Diffstat:
M.gitignore | 1+
APH16210/28.09.25.md | 3+++
DPH16210/28.09.25.ms | 2--
Mbuild | 6+++---
4 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,2 +1,3 @@ *.pdf +*.html *.o diff --git a/PH16210/28.09.25.md b/PH16210/28.09.25.md @@ -0,0 +1,3 @@ +Lecture 1 +========= +testing! diff --git a/PH16210/28.09.25.ms b/PH16210/28.09.25.ms @@ -1,2 +0,0 @@ -.LP -Lesson 1 diff --git a/build b/build @@ -1,10 +1,10 @@ #!/bin/sh -names=$(find ./ -name *.ms) +names=$(find ./ -name *.md) for name in $names; do - out=$(echo $name | sed -e "s/\.ms$//") - groff -ms -Tpdf $name > $out.pdf || exit 1 + out=$(echo $name | sed -e "s/\.md$//") + smu $name > $out.html || exit 1 echo "compiled ${out}" done