We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, I've got generated markdown that looks like this:
1. **Intro** - some text 2. **1440 Results** - some text 3. **4K Results** - some text
This get's converted into:
<ol> <li> <strong>Intro</strong> <ul><li>some text</li></ul> </li> <li> <strong>1440 Results</strong> <ul><li>some text</li></ul> </li> <li> <strong>4K Results</strong> <ul><li>some text</li></ul> </li> </or>
Whereas I'd like it to be
<ol> <li> <strong>Intro</strong> <span>- some text</span> </li> <li> <strong>1440 Results</strong> <span>- some text</span> </li> <li> <strong>4K Results</strong> <span>- some text</span> </li> </or>
Basically keeping the titles on the same line
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey, I've got generated markdown that looks like this:
This get's converted into:
Whereas I'd like it to be
Basically keeping the titles on the same line
The text was updated successfully, but these errors were encountered: