// Installation tips for pandoc2rfc // as provided by John Dowdell (July 2016) // Note: tested on OS X 10.10 and 10.11. 1. Install Go. Go to https://golang.org/dl/ and select the appropriate binary, in my case go1.4.2.darwin-amd64-osx10.8. 2. Install Git tools. Seems to be a number of ways, but I used Github for Mac https://mac.github.com/. Download, install, enter Git credentials, install Git User Tools. Open a terminal, type git and follow the prompt to download command line tools. Test that git works by typing git in a terminal again, should get the help output. 3. Prepare the file space to receive two git projects, which will be placed at /usr/local/go/src. $ cd /usr/local/go/src $ sudo mkdir github.com $ cd github.com 4. Download s TOML (s Obvious, Minimal Language). $ sudo mkdir BurntSushi; cd BurntSushi $ sudo git clone https://github.com/BurntSushi/toml.git $ cd .. 5. Download s mmark $ sudo mkdir miekg $ sudo git clone https://github.com/miekg/mmark.git 6. Build mark $ cd mmark $ sudo go build 7. Test it works $ sudo ./mmark -h Mmark Markdown Processor v1.0 Available at http://github.com/miekg/ 8. Add the path to your terminal environment $ cd use your favourite text editor to create the file .bash_profile, containing the line below export PATH="/usr/local/go/src/github.com/miekg/mmark/mmark: Then open a new terminal window and test it out. $ mmark -h Mmark Markdown Processor v1.0 Available at http://github.com/miekg/mmark$PATHmmark