Terminal wrapper for rendering a terminal on a website by converting ANSI escape sequences to HTML. Works with many shells, including bash, fish, ksh and zsh.
The changelog can be found here.
How to install to-html is explained on the releases page.
Execute a command:
to-html 'echo "Hello world"'
Execute several commands:
to-html 'echo "Hello "' 'echo world' ls
Commands can contain shell syntax, including pipes and redirections:
to-html "echo Hello world! | grep 'H' > somefile.txt"
The default shell is bash. Use --shell
/-s
to use a different shell:
to-html -sfish "../" "ls" # executed with fish
By default, to-html emits a <pre>
tag. Use --doc
/-d
to generate a whole HTML document (including CSS):
to-html -d "ls --color" > output.html
By default, to-html only displays an arrow (>
) as prompt. To display the current working directory, pass --cwd
/-c
:
to-html -c "cd .." "ls"
Example output:
~/Develop/to-html/crates $ cd .. ~/Develop/to-html $ ls Cargo.lock CHANGELOG.md docs README.md target Cargo.toml crates LICENSE src ~/Develop/to-html $
(colors can't be shown on GitHub)
to-html
only supports SGR parameters (text style and colors). However, programs that overwrite their output, like for progress bars, seem to "just work". Please correct me if I'm wrong.
If you need more advanced terminal features on your website, may I suggest to use xterm.js.
Include this on your website to get syntax highlighting for the prompt:
The default terminal colors can be overridden with CSS classes, for example:
.terminal {
--red: #f44;
--bright-red: #f88;
}
> to-html 'cargo test' "to-html 'cargo test'"
In the Gnome terminal, you can define a key binding to copy terminal content as HTML.
Please be friendly and respectful to others. This should be a place where everyone can feel safe, therefore I intend to enforce the Rust code of conduct.
I appreciate your help! The easiest way to help is to file bug reports or suggest new features in the issue tracker.
If you want to create a pull request, make sure the following requirements are met:
Also, to pass continuous integration, the code must
That's it! If you have any questions, feel free to create an issue.