[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
#1731: Lowdown some minor issues
From: |
Chicken Trac |
Subject: |
#1731: Lowdown some minor issues |
Date: |
Thu, 11 Mar 2021 14:43:31 -0000 |
#1731: Lowdown some minor issues
---------------------------------------+-------------------------------
Reporter: Idiomdrottning | Type: defect
Status: new | Priority: not urgent at all
Milestone: someday | Component: extensions
Version: 5.1.0 | Keywords:
Estimated difficulty: |
---------------------------------------+-------------------------------
These are already fixed and on their way to upstream, but just in case
someone else has the same problems.
I changed one cons to be one append (in tight lists only);
the bug was that
(pp (markdown->sxml "* like this"))
produced
(ul (li ("like" " " "this")))
instead of, what it does now,
(ul (li "like" " " "this"))
This also fixes nested lists too, when you have a new bullet list or
ordered list inside the item.
The other problem was that it believed <html> to be an in line element
so <html><body>hi</body></html> did not work while <html> in an <i> or
something worked. Just adding html among the block elements worked as
a workaround but then <blockquote><html>hi</html></ blockquote> worked
(it already did so that wasn't a regression. Just not right). So now
it's a root element, it's own thing basically.
My repo with these fixes are at https://idiomdrottning.org/lowdown
--
Ticket URL: <https://bugs.call-cc.org/ticket/1731>
CHICKEN Scheme <https://www.call-cc.org/>
CHICKEN Scheme is a compiler for the Scheme programming language.
- #1731: Lowdown some minor issues,
Chicken Trac <=