Inline code blocks don't contain other elements

This commit is contained in:
Danila Fedorin 2021-07-01 00:44:41 -07:00
parent fd12baae3b
commit 4ee15005f5

View file

@ -70,8 +70,8 @@ class EmphPart {
}
class CodePart {
constructor(wraps) {
this.wraps = wraps;
constructor(text) {
this.text = text;
}
get type() { return "code"; }