mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
10 lines
195 B
Bash
10 lines
195 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
# open a Markdown document in your browser directly
|
||
|
# mdo => markdown open
|
||
|
|
||
|
# e.g. preview the markdown in vim:
|
||
|
# :!mdo %
|
||
|
|
||
|
$BROWSER "data:text/html;base64,`markdown $* | base64 -w 0`"
|