account icon indicating copy to clipboard operation
account copied to clipboard

Feat: support for hyperlinks

Open govindsartaj opened this issue 2 years ago • 0 comments

Hyperlink support added for Markdown style links - see #6

For example, the parser will convert [Postlight Careers](https://postlight.com/careers) to:

{
    type: "link",
    anchorText: "Postlight Careers",
    href: "https://postlight.com/careers"
}

which will be rendered as a simple <a> tag:

<a href="https://postlight.com/careers">Postlight Careers</a>

govindsartaj avatar Jan 10 '22 23:01 govindsartaj