···11!insert("//style.sk")
22!insert("blog_templates.sk")
3344-!blog_post( 2 "An Overview on Skidmark" "2025-07-11" "Nominative determinism in software")
44+!blog_post( "An Overview on Skidmark" "2025-07-11" "Nominative determinism in software")
55{{{
66This post will cover the current features and some future plans of my tool I've been working on, [Skidmark](https://github.com/Tholp1/Skidmark). If you have no interest in such a thing avert your eyes.
77···534534}}}
535535536536}}}
537537-&blog_nav("blog1.html" "blog3.html")
537537+&blog_nav()
538538539539540540&bsky_comments("https://bsky.app/profile/tholps.site/post/3ltqai4cwsc23")
+2-2
skid/blog/blog3.sk
skid/blog/rainy_bass.sk
···11!insert("//style.sk")
22!insert("blog_templates.sk")
3344-!blog_post( 3 "Rainy Bass" "2025-07-30" "Not fishing for compliments")
44+!blog_post( "Rainy Bass" "2025-07-30" "Not fishing for compliments")
55{{{
66This is the first post I've written since this website has been public and I'm glad to say things went mostly smooth, just had to fix some css for mobile. Everything is just static content so not really anything that could go wrong that I wouldn't have caught beforehand but I was still a bit nervous - in a cool and relaxed way though.
77···3535Thats all for now, see you soon.
36363737}}}
3838-&blog_nav("blog2.html" "blog4.html")
3838+&blog_nav()
39394040&bsky_comments("closed")
4141
+2-2
skid/blog/blog4.sk
skid/blog/went_hiking.sk
···11!insert("//style.sk")
22!insert("blog_templates.sk")
3344-!blog_post( 4 "Went hiking" "2025-10-30" "Pictures of rocks and trees")
44+!blog_post( "Went hiking" "2025-10-30" "Pictures of rocks and trees")
55{{{
66This past weekend my family and I went hiking in Matthiessen State Park since we were nearby. I took some pictures of cool trees and cool rocks.
77···23232424!note("psst, I've added an atom feed to the blog ↓ though if you're reading this when it came out you probably already know about it")
2525}}}
2626-&blog_nav("blog3.html" "blog5.html")
2626+&blog_nav()
27272828&bsky_comments("closed")
2929
···101101<a id="downpour_open_settings" onclick="document.getElementById('downpour_settings').style.display = 'block';document.getElementById('downpour_open_settings').style.display = 'none';">Open Settings</a>
102102<script type="module" src="/res/scripts/downpour/glue.js" defer></script>
103103}}}
104104+105105+!template(groupindex) {{{
106106+ $[
107107+ files = {
108108+ !for_each_file_in_group( f $["!groupname()"] )
109109+ {{{
110110+ "[[f..1]]",
111111+ }}}
112112+ }
113113+114114+ curfile = "!filename()"
115115+ index = -1
116116+117117+ for i, v in ipairs(files) do
118118+ if curfile == v then
119119+ index = i
120120+ end
121121+ end
122122+ return index
123123+ ]
124124+}}}
+23
skid/test.sk
···11test1
22+$[
33+ a = "hi" .. " world "
44+ a = a .. ( 67 + 420 ) .. " !filename() :)"
55+]
66+77+88+junk and stuff
99+1010+1111+$[a]
1212+1313+$[b = "//sometihng.sk"]
1414+1515+1616+$[hello = 10]
1717+1818+!if($[hello < 5]) {{{
1919+ small
2020+}}}
2121+2222+!if($[hello > 5]) {{{
2323+ big
2424+}}}