summaryrefslogtreecommitdiff
path: root/spec2md.pl
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-08 20:52:36 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-08 20:58:24 -0800
commitfaacf7065f0303a5b0d5c241e06bcfd8c827651c (patch)
tree5bd7afc98a19783f8c304d1c14c717a52cd9b376 /spec2md.pl
parent535afc08febf42fb984e7115bf7a947985690e41 (diff)
Make spaces visible using CSS.
Closes #49. I didn't want to actually insert the characters, since I want the code samples to be cut/pasteable. But this CSS trick seems to work.
Diffstat (limited to 'spec2md.pl')
-rw-r--r--spec2md.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec2md.pl b/spec2md.pl
index f93aad8..313f86f 100644
--- a/spec2md.pl
+++ b/spec2md.pl
@@ -29,7 +29,7 @@ while (<STDIN>) {
$section = $match[0];
}
if ($stage != 0) {
- # $_ =~ s/ /␣/g;
+ $_ =~ s/ /␣/g;
}
print $_;
}