whistyun / MdXaml

Markdown for WPF - alternate version of Markdown.Xaml
MIT License
245 stars 37 forks source link

Bolding first word in unordered list not rendering correctly #52

Closed CBeatt13 closed 1 year ago

CBeatt13 commented 1 year ago

I'm attempting to create an unordered list where the first word is bold like so:

Using the following markdown:

* **Bold Header**: Details

But the render engine fails to do so properly. I could use the hyphen to do the unordered list like most markdown engines I've used in the past, but I don't really like the open bullet used and am unsure how to change it out.

CBeatt13 commented 1 year ago

I also tried the following code to overwrite the markdown style in hopes of changing the List MarkerStyle but was unsuccessful

<Style TargetType="List">
    <Setter Property="Margin" Value="0"/>
    <Setter Property="MarkerStyle" Value="Square"/>
</Style>
whistyun commented 1 year ago

Sorry, this is parsing issue. I have released v1.16.3 to solve this issue.

Please update her MdXaml package on your project.

CBeatt13 commented 1 year ago

Thanks for taking a look at it. I'll pull down the new package and let you know if I see it resolved. Will probably be several hours before I can let you know. Feel free to close the ticket in the meantime if you wish.