about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-26 22:09:54 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 22:09:54 -0800
commit4c4d325ca8544f52bb305dbb46b1f8144c33c2af (patch)
treeb21b2fce31756a309f27c8ed4c6402156752671a /update_html
parentfdfe34ded306526bd87568e50ac9a6e03c9c0594 (diff)
downloadmu-4c4d325ca8544f52bb305dbb46b1f8144c33c2af.tar.gz
3716
Make hyperlinks less salient in the rendered html since there's so many of them.
Diffstat (limited to 'update_html')
-rwxr-xr-xupdate_html6
1 files changed, 4 insertions, 2 deletions
diff --git a/update_html b/update_html
index fdd29ef2..7a9b2ca6 100755
--- a/update_html
+++ b/update_html
@@ -3,13 +3,15 @@
 
 process() {
   vim -c "set number" -c TOhtml -c write -c qall $1
-  # per-line anchors
-  sed -i 's/^\.LineNr .*/.LineNr { color: #444444; }/' $1.html
 
   sed -i 's,<title>\~/mu/,<title>Mu - ,' $1.html
   sed -i 's,\.html</title>,</title>,' $1.html
   sed -i 's/^\* { \(.*\) }/* { font-size: 12pt; \1 }/g' $1.html
   sed -i 's/^body { \(.*\) }/body { font-size: 12pt; \1 }/g' $1.html
+  sed -i 's/^\.LineNr .*/.LineNr { color: #444444; }/' $1.html  # line numbers
+  # make links less salient since we may have a lot of cross-links
+  sed -i '/^body {/ a  a:hover { text-decoration: underline; }' $1.html
+  sed -i '/^body {/ a  a { text-decoration: none; }' $1.html
   # tweak contrast
   sed -i 's/^\.Constant .*/.Constant { color: #00a0a0; }/' $1.html
   sed -i 's/^\.muControl .*/.muControl { color: #c0a020; }/' $1.html