diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-05 10:11:54 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-05 14:55:59 +0100 |
commit | 23bacb83e6ea67ffdd62be630626ab50ff665abf (patch) | |
tree | fcb7691e3f8862400c00f0ca823503e5087f411e /app/Main.hs | |
parent | 1b1c3faabae530229eb675a2e70e744c2f45cbbe (diff) |
feat: parse issues as markdown
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Main.hs b/app/Main.hs index 8a043f7..fdbe4ae 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,27 +1,3 @@ --- TODO Parse issues as markdown --- --- There are several issues related to the fact that we are not parsing --- issues as markdown. --- --- (1) We cannot easily page `show` output, as we are mixing direct output --- with shell commands highlighting markdown. --- --- (2) We cannot easily ignore markup (tags) in code blocks. --- --- (3) We cannot easily determine the first and last markdown content when --- augmenting the issue body with meta information. --- --- I am neither for nor against replacing `mdcat` with our own markdown --- rendering. --- --- @supersedes make-show-page-able --- @supersedes only-separate-generated-tags-with-a-blank-line-when-description-does-not-end-with-tags --- --- @difficulty medium --- @priority medium --- @topic markdown --- @topic tags - -- TODO Tag improvements (OR-filtering) -- -- Currently it is not possible to filter for an issue satisfying one filter or another. We could add the following syntax allowing it: |