We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm looking for a package that can convert ansi-tagged links to html.
It is possible to create VT100 terminal hyperlinks.
const ESC = '\u001B['; const OSC = '\u001B]'; const BEL = '\u0007'; const SEP = ';'; var test = [ OSC, '8', SEP, SEP, "url", BEL, "text", OSC, '8', SEP, SEP, BEL ].join(''); console.log(test);
or
echo -e '\e]8;;http://example.com\e\\This is a link\e]8;;\e\\'
These are correctly displayed in the terminal, and correctly represented in a file.
However, html conversion displays them without html formatting.
Could we make these type of links work? Thank you.
The text was updated successfully, but these errors were encountered:
Tjatse
No branches or pull requests
I'm looking for a package that can convert ansi-tagged links to html.
It is possible to create VT100 terminal hyperlinks.
or
These are correctly displayed in the terminal, and correctly represented in a file.
However, html conversion displays them without html formatting.
Could we make these type of links work?
Thank you.
The text was updated successfully, but these errors were encountered: