This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## converts files to html and | |
## opens them in browser. | |
## add to .bashrc or .zshrc & source the file | |
# usage: vimhtml yourfilename | |
vimhtml(){ | |
ext=".html" | |
vim -f +"syn on" +"TOhtml" +"wq" +"q" $1 | |
open $1$ext |