0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ZealでMDNのdocset(HTML, JS, CSS)がContent rendering errorで表示できない

Posted at

Content rendering error in MDN docsets · Issue #1155 · zealdocs/zeal · GitHubにあるように、MDNは新しいJSの機能を使っているせいで、Docsetがこわれてしまうらしい。ちなみにMDNはReactを使っているらしい。

このコメントにあるように$HOME/.local/share/Zeal/Zeal/docsets以下にある全てのreact-main.*.jsを消去することで正常に表示できるようになる。修正後はzealの再起動が必要。

このIssueを読んでいくとわかるのだがこの問題はmasterではすでにfixされている。しかしリリースはされていないため自分でbuildするか、上記のtipsで一時的に使えるようにしてあげる必要がある。

Documentが更新されるたびに実行する必要がありzsh、bashなら下記のfunctionを.bashrc, .zshrcなりに登録しておくのがよい。

zeal-docs-fix() {
    pushd "$HOME/.local/share/Zeal/Zeal/docsets" >/dev/null || return
    find . -iname 'react-main*.js' -exec rm '{}' \;
    popd >/dev/null || exit
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?