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
The problem is that diff is not syntax coloured on the slide (but it is here above).
The reason is in mdx-loader/src/mdxPlugin.js tree.children.forEach() only processes top-most code types but doesn't descent deeper (e.g. into a list type).
The text was updated successfully, but these errors were encountered:
Type
When we have a list and inside it a Prism.js code section (```) fusuma doesn't add its language to the loadable list of languages.
Here is an example:
This is valid markdown where code sections are indented to the list level. Rendered by github:
The problem is that
diff
is not syntax coloured on the slide (but it is here above).The reason is in
mdx-loader/src/mdxPlugin.js
tree.children.forEach()
only processes top-mostcode
types but doesn't descent deeper (e.g. into alist
type).The text was updated successfully, but these errors were encountered: