doc: fix unmatched code fences in git-stripspace
commitad3967a5a2bc8a2505ba618e59cd541775571ff8
authorJeff King <peff@peff.net>
Wed, 13 May 2015 02:15:56 +0000 (12 22:15 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 May 2015 04:33:09 +0000 (12 21:33 -0700)
tree923fca2eed54186ccc92f4d39dde9cd73b6303a3
parent282616c72d1d08a77ca4fe1186cb708c38408d87
doc: fix unmatched code fences in git-stripspace

The asciidoctor renderer is more picky than classic asciidoc,
and insists that the start and end of a code fence be the
same size.

Found with this hacky perl script:

    foreach my $fn (@ARGV) {
      open(my $fh, '<', $fn);
      my ($fence, $fence_lineno, $prev);
      while (<$fh>) {
        chomp;
        if (/^----+$/) {
          if ($fence_lineno) {
            if ($_ ne $fence) {
              print "$fn:$fence_lineno:mismatched fence: ",
                    length($fence), " != ", length($_), "\n";
            }
            $fence_lineno = undef;
          }
  # hacky check to avoid title-underlining
          elsif ($prev eq '' || $prev eq '+') {
            $fence = $_;
            $fence_lineno = $.;
          }
        }
        $prev = $_;
      }
    }

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-stripspace.txt