Skip to content

Commit

Permalink
8215308: pandoc-html-manpage-filter.js does not work for [un]pack200
Browse files Browse the repository at this point in the history
Reviewed-by: erikj
  • Loading branch information
jonathan-gibbons committed Jan 9, 2019
1 parent 11b29c8 commit a5d9aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/scripts/pandoc-html-manpage-filter.js
Expand Up @@ -86,7 +86,7 @@ function MetaInlines(value) {
function change_title(type, value) {
if (type === 'MetaInlines') {
if (value[0].t === 'Str') {
var match = value[0].c.match(/^([A-Z]+)\([0-9]+\)$/);
var match = value[0].c.match(/^([A-Z0-9]+)\([0-9]+\)$/);
if (match) {
return MetaInlines([
Str("The"), Space(),
Expand Down

0 comments on commit a5d9aef

Please sign in to comment.