home
readme
diff
tree
note
docs
0commit 3482d6efe8f342715f9a6e190ee7e8b2d59ddf7f
1Author: Mason Wright <mason@lakefox.net>
2Date: Wed Jul 9 10:28:56 2025 -0600
3
4 Project Structure Changes
5
6diff --git a/.gitignore b/.gitignore
7index d6a751d..7807e77 100644
8--- a/.gitignore
9+++ b/.gitignore
10@@ -1,3 +1,3 @@
11 build/
12 main
13-docs/
14+docs/dist
15diff --git a/Makefile b/Makefile
16index 149b1df..8373da0 100644
17--- a/Makefile
18+++ b/Makefile
19@@ -2,7 +2,7 @@
20 CCFLAGS = -Wall -Wextra -std=c++23
21 CC = clang++
22
23-.PHONY: all clean run docs run_tests
24+.PHONY: all clean run docs run_tests serve
25
26 all: main
27
28@@ -47,4 +47,7 @@ run:
29 clear && ./main
30
31 docs:
32- doxygen config && cd ../build && ./git.sh && ./tracker.sh
33+ cd docs/ && evoke build && cd ../../build && ./git.sh && ./tracker.sh
34+
35+serve:
36+ cd docs/dist && python3 -m http.server 8000
37diff --git a/index.html b/index.html
38deleted file mode 100644
39index 289b7f3..0000000
40--- a/index.html
41+++ /dev/null
42@@ -1,25 +0,0 @@
43-<!DOCTYPE html>
44-<html>
45- <head>
46-<style>
47- h1 {
48- color: red;
49- content: "<h1>hi</h1>";
50- }
51-</style>
52- </head>
53- <body>
54- <h1 id="<">
55- Hello world
56- </h1>
57- <br />
58- <input type="text"/>
59- <p id="test">
60- this is a test
61- </p>
62- <pre>
63- <script> console.log("</pre>");</script>
64- </pre>
65- <textarea><script>console.log(\"</pre>\");</script></textarea>
66- </body>
67-</html>
68diff --git a/style.css b/style.css
69deleted file mode 100644
70index 2e59320..0000000
71--- a/style.css
72+++ /dev/null
73@@ -1,7 +0,0 @@
74-h1 {
75- color: red;
76-}
77-
78-h1 > #id {
79- background: purple;
80-}