quarto-dev / quarto-dev/quarto-cli
Code annotations not available for haskell.
Open
@cscheid is already working on this.
Since Aug 24, 2024.
code-annotation
enhancement
- Dominant language
- JavaScript
- Stars
- 6k
- Forks
- 458
- Avg merge
- 1d 9h
- Merged PRs (30d)
- 41
Description
Bug description
Code annotations won't appear for haskell.
---
format:
html:
code-annotations: true
---
```{.haskell}
fact :: Int -> Int {- <1> -}
fact n = n * (fact (n-1)) {- <2> -}
```
1. aueo
2. htns
```{.hs}
fact :: Int -> Int -- <1>
fact n = n * (fact (n-1)) -- <2>
```
1. aueo
2. htns
Here's how it looks in the document I'm working on.
Quarto check output
Using latest git version. All modules OK except R installation (None).
sasja@ed800:~/.quarto/quarto-cli$ git show -s --format="%as %H"
2024-08-22 09c61d5d9429b6bd9128d9743a9b5027239a9bfc
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.