dotfiles/fish/functions/render_html.fish
2025-03-24 04:34:15 +11:00

3 lines
No EOL
136 B
Fish

function render_html --description 'gets content of provided file and renders as if it were html';
cat $argv[1] | lynx --stdin;
end