Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cast crash that could happen in markdown blockquote
After 0.19.1, this started crashing: ``` > *Note* > ... ``` due to a force cast I was doing foolishly (which broke because "*Note*" is an EmphasisNode, not a Text node) Changed logic from `child as Text` to `child as? Text`
- Loading branch information