indexabout
# This instance runs a custom cgit build using
# https://git.zx2c4.com/cgit/log/?h=ch/for-jason
# https://git.zx2c4.com/cgit/patch/?id=d9f3d6fb1817fd22512ac62e8d7c36c67dc5584a

root-title=Department of Bad Code
root-desc=I implemented Dijkstra / And compiled it with -Wextra / GCC said / "Your brain is dead" / And then concluded "Next! Bruh."
clone-prefix=https://git.unnamed.website
default-page=about

# To clear cache, run
# sudo sh -c "rm /var/cache/cgit/*"
cache-size=64

# Idle column uses master branch
# https://lists.zx2c4.com/pipermail/cgit/2020-August/004514.html
# Can manually set the time
# https://ch1p.io/cgit-idle-time/
repository-sort=age

# No spam plz
noplainemail=1

# The default md2html filter uses python-markdown and is super slow
# Instead use MD4C
about-filter=/usr/lib/cgit/filters/md2html.sh
readme=:README.md
root-readme=/etc/cgitrc

# scan-path MUST be last!
# https://wiki.archlinux.org/title/Cgit#readme_files_are_not_found,_about_tab_not_shown
# To make repo unlisted, add hide=1 to its cgitrc
section-from-path=1
scan-path=/srv/git

# Tip: Generate a GitHub-style contrib graph with
# https://github.com/tos-kamiya/git-contrib-graph

# Source code for my md2html filter:
#!/bin/sh

if [ "$1" = "/etc/cgitrc" ]; then
	echo "<pre>"
	# https://stackoverflow.com/a/12873723
	sed 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g; s/"/\&quot;/g; s/'"'"'/\&#39;/g' "$1" /usr/lib/cgit/filters/md2html.sh
	echo "</pre>"
else
	# Fix README file links
	md2html --github | sed 's/<a href="\([^/]*\)">/<a href="tree\/\1">/g'
fi