Skip to content
New issue

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

Rendering list titles #652

Open
martin-dimi opened this issue Jan 29, 2025 · 0 comments
Open

Rendering list titles #652

martin-dimi opened this issue Jan 29, 2025 · 0 comments

Comments

@martin-dimi
Copy link

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

  1. Intro - some text
  2. 1440 Results - some text
  3. 4K Results - some text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant