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
I think this is an issue within markdown.h, but only tested it in the iOS lib and have not had the real time to debug property. Would be great to have another eye on it as well.
Works just fine in "normal" text but won't in entities.
The following markdown: I love **AT&T**
results in:
I love AT&T (only AT is bolded)
I also noticed that our parser.cpp file is missing an entity callback (which I had forgotten, but have been told before.
So, at this point, I am inclined to think that the bug is in the code surrounding libsoldout in bypass-core. Essentially that code handles all of libsoldout's parsing callbacks and assembles a "markdown tree" which is similar to the DOM in HTML. When that tree is built up, the particular block you would expect to get would be:
I'm afraid I don't have any more time to investigate atm since I'm preparing my release in the App Store, but that should give you guys a hint on where to look. Let me know if that's helpful.
I think this is an issue within markdown.h, but only tested it in the iOS lib and have not had the real time to debug property. Would be great to have another eye on it as well.
Works just fine in "normal" text but won't in entities.
The following markdown:
I love **AT&T**
results in:
I love AT&T (only AT is bolded)
"&" and "<" sure are special chars in markdown and I would guess it is something related to that: http://daringfireball.net/projects/markdown/syntax
The text was updated successfully, but these errors were encountered: