-
Notifications
You must be signed in to change notification settings - Fork 413
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
Fatal error: not text
with HTML tags in Obj-C comments
#976
Comments
This is tracked by jpsim/SourceKitten#409. |
I’m usually in favor of closing duplicate issues but in this case I’d like to keep open, since the dupe is across two different projects. |
Leaving a note here that this is an issue for me as well. export SOURCEKIT_LOGGING=3;
jazzy \
--objc \
--author "Moshe Berman" \
--clean \
--umbrella-header ./MyHeader.h \
--framework-root ./ \
--output ../docs I've got lots of HTML comments in my documentation, too. I did a quick search and replace across my project for a few common HTML tags, |
This is still an issue for me and prevents me from producing Obj-C documentation for my hybrid framework. |
Fixed in jazzy 0.13.1 via jpsim/SourceKitten#634. |
Trying to run
jazzy --objc
against my project is erroring out withFatal error: not text: CXCommentKind(rawValue: 3)
. It appears that a raw value of3
corresponds toCXComment_HTMLStartTag
, and sure enough, my Obj-C documentation has plenty of HTML tags (<tt>foo</tt>
for multi-word inline code spans).The text was updated successfully, but these errors were encountered: