bmoliveira / MarkdownKit

A simple and customizable Markdown Parser for Swift
MIT License
791 stars 139 forks source link

Code Element have some corner cases not handled. #37

Open bmoliveira opened 5 years ago

bmoliveira commented 5 years ago

I've found at least 2 bugs with the Code element:

Example:

func bug() {}

shows as:

swift
func bug() {}

Example:

/// lets test `this` out

show as


/// lets test out
bmoliveira commented 5 years ago

At the moment I don't have much time to tackle this since is a medium to hard complexity issue with the parsing method.

I'll tackle it as soon as I can.