Shaun Tan

Results 21 issues of Shaun Tan

### What’s the bug you are facing? Outdated type-declaration from `@types/lowlight` package, which is a dependency for `@tiptap/extension-code-block-lowlight`. The `lowlight` package already declares its own types, thus, the outdated `@types/lowlight`...

bug

Seeing as the owner has been inactive since 2020, I've forked the repo and updated the colorschemes _(17 so far)_ in hopes to continue his legacy: https://github.com/EvitanRelta/vim-colorschemes Also cuz my...

## Input: ```html TEXT ``` ## Current output: ```md TEXT ``` ### Expected output: ```md TEXT ```

bug

The coverage report generated by `npx jest --coverage` gave these highlights which seems to wrong: ![image](https://github.com/EvitanRelta/htmlarkdown/assets/35413456/31320ade-7e7c-49fd-b412-10601da61961)

bug

Such as the coverage %, license, version and the "all test cases passed" badges: ![image](https://user-images.githubusercontent.com/35413456/210797534-6a66baff-9de8-4828-9d7d-86f63ff25fee.png)

feature
help wanted
good first issue

# Context Currently, the hyphens `-` of the table delimiter-row extends all the way to the column-separators `|`: ``` | Default-Left | Centered | Right-Aligned | |--------------|:--------:|--------------:| | Cell 1...

question
improve

Underscore bold and italic are in the form: ```html __bold__, _italic_ ``` The reason both bold and italics are currently asterisks `*` only, is cuz of this edge case: ```md...

feature

From the CommonMark spec: https://spec.commonmark.org/0.30/#reference-link A reference link is in the form: ```md [foo][bar] [bar]: /url "title" ``` But there's also different kinds of them: [full], [collapsed], and [shortcut]. The...

feature

From CommonMark spec: https://spec.commonmark.org/0.30/#link-title link titles can be added to the link-markdown by: ```md [link](/uri "title") ``` which renders as this HTML: ```html link ```

improve

Since setext headings only support `` and ``, the problem is what should HTMLarkdown do when it encounters a `Heading 3` when in setext mode? Should it: - switch to...

feature
question