casile 0.14.4

The command line interface to the CaSILE toolkit, a book publishing workflow employing SILE and other wizardry
Documentation
1
2
3
4
5
6
7
#!@PERL@

# Convert hyphens between numbers to figure dashes
while (<>) {
  s#(?<=\d)-\s*(?=\d)#--#g;
  print;
}