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 encountered this error while trying to generate documentation for an all-objc framework with jazzy.
tl;dr; don't use html tags, use markdown
I don't know if it is worth addressing, but at least the explanation and workaround might be worth this ticket. (It took me some time to understand where the error came from).
The issue error arises when some fields in the documentation contains an html tag. So the workaround is to remove html tags and prefer markdown.
For information here is the header file, command line args and error log of the failing case:
// my_header.h/** * some foo function * @param bar has a <b>purpose</b>*/voidfoo(int bar);
I encountered this error while trying to generate documentation for an all-objc framework with jazzy.
tl;dr; don't use html tags, use markdown
I don't know if it is worth addressing, but at least the explanation and workaround might be worth this ticket. (It took me some time to understand where the error came from).
The issue error arises when some fields in the documentation contains an html tag. So the workaround is to remove html tags and prefer markdown.
For information here is the header file, command line args and error log of the failing case:
but the following works fine:
The text was updated successfully, but these errors were encountered: