Md2man 3.0.1 - markdown to manpage

md2man is a Ruby library and command-line program that converts
Markdown documents into UNIX manual pages (both Roff and HTML).

Version 3.0.1 (2014-07-16)

This release restores Mac OS X support and fixes a permalink generation
bug.

Patch:

  • GH-13: man(1) on Mac OS X could not display URLs.

    The version of groff on Mac OS X is too old: it lacks the
    an-ext.tmac
    macro package that defines styles for email addresses and general
    URLs.

    $ groff --version
    ...
    GNU grops (groff) version 1.19.2
    GNU troff (groff) version 1.19.2
    

    This patch drops those URL macros in favor of simpler angled
    brackets.

    Thanks to Sorin Ionescu for reporting this issue in GH-13:
    Mac OS X man does not display links 路 Issue #13 路 sunaku/md2man 路 GitHub

  • md2man-html(1): cross references were escaped in heading permalink
    IDs.