You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a number of issues with markdown in Notebook entries that should be fixed:
Block quotes are not being tokenized as such, but are instead being HTML-encoded: > block quote gets encoded as > block quote. Instead, block quotes should work as documented for vanilla markdown.
Space before headings (H1, H2, etc.) is missing:
Desired output
Rendered output
CSS currently adds vertical space under the headings, but doesn't add it above. This was done to avoid adding unnecessary vertical space before headings when they're the first line in an entry. However, CSS can be properly written to avoid this and should be implemented here.
Steps to Reproduce
In a Notebook entry, reproduce the identified issues above as noted.
Environment
Open MCT Version: 3.1.0
Deployment Type: /testathon
OS:
Browser:
Impact Check List
Data loss or misrepresented data?
Regression? Did this used to work or has it always been broken?
Is there a workaround available?
Does this impact a critical component?
Is this just a visual bug with no functional impact?
Does this block the execution of e2e tests?
Does this have an impact on Performance?
Additional Information
The text was updated successfully, but these errors were encountered:
Block quotes are not being tokenized as such, but are instead being HTML-encoded: > block quote gets encoded as > block quote. Instead, block quotes should work as documented for vanilla markdown.
This appears to be a Markdown thing, so I'm not sure we can change this. E.g., on both the Marked demo and here on Github's markdown editor, this markdown:
Summary
There are a number of issues with markdown in Notebook entries that should be fixed:
> block quote
gets encoded as> block quote
. Instead, block quotes should work as documented for vanilla markdown.Desired output
Rendered output
CSS currently adds vertical space under the headings, but doesn't add it above. This was done to avoid adding unnecessary vertical space before headings when they're the first line in an entry. However, CSS can be properly written to avoid this and should be implemented here.
Steps to Reproduce
Environment
Impact Check List
Additional Information
The text was updated successfully, but these errors were encountered: