aboutsummaryrefslogtreecommitdiff
path: root/bin/murl
blob: 7b5dc050247955f6ba8c13488cbe6d0d427d4102 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

#
# Format markdown and pass it to hurl to extract URLs from it.
#
# Author: Tom Ryder <tom@sanctum.geek.nz>
# Copyright: 2016
# License: Public domain
#

# Check we have the programs we need
hash pandoc hurl || exit

# Pipe the output of pandoc(1) on our args ...
pandoc -f markdown -t html -- "${@:-/dev/stdin}" |

# ... into our own hurl
hurl