Skip to content

Commit

Permalink
Don't use smart quotes in pandoc generated changelog helpfiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnw committed Jan 9, 2018
1 parent 145380c commit fb9d26a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions game/txt/hlp/pennv187.hlp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -16,18 +16,24 @@ be read in 'help patchlevels'.


Major Changes: Major Changes:


* Support websocket connections. See http://grapenut.org/code/wsclient/index.html for a * Support websocket connections. See https://github.com/grapenut/websockclient for a
sample in-browser client. [Grapenut, 1007] sample in-browser client. [Grapenut, 1007]


Softcode: Softcode:


* Support all of Rhosts colors() key arguments (Except n). [SW, 1112] * Support all of Rhost's colors() key arguments (Except n). [SW, 1112]


Fixes: Fixes:


* A bunch of color names werent mapping correctly to Xterm color codes. [SW] * A bunch of color names weren't mapping correctly to Xterm color codes. [SW]
* @grep/iprint hilites the matching text in the same case it appears in the attribute body. [SW, 1120] * @grep/iprint hilites the matching text in the same case it appears in the attribute body. [SW, 1120]
* @mail wasn’t updating a player’s MAILCURF attribute correctly. [CLDawes, 1131] * @mail wasn't updating a player's MAILCURF attribute correctly. [CLDawes, 1131]
* Connecting with a web browser to a mush without a mud_url config
option set caused an infinite refresh loop. Reported by
grapenut. [1149]
* Make sure sigrecv_ack() won't hang the mush if it somehow gets
called at the wrong time. Also fix a file descriptor leak in the
signal handling code. [SW]


Documentation: Documentation:


Expand Down
2 changes: 1 addition & 1 deletion utils/mkvershlp.pl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ sub process_markdown {
my ($IN, $OUT) = @_; my ($IN, $OUT) = @_;
my ($MDIN, $MDOUT); my ($MDIN, $MDOUT);


my $pid = open2 $MDOUT, $MDIN, "pandoc", "-t", "utils/change2hlp.lua"; my $pid = open2 $MDOUT, $MDIN, "pandoc", "-f", "markdown-smart", "-t", "utils/change2hlp.lua";


my $started = 0; my $started = 0;
my $n = 0; my $n = 0;
Expand Down

0 comments on commit fb9d26a

Please sign in to comment.