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 { class CodePart {
constructor(wraps) { constructor(text) {
this.wraps = wraps; this.text = text;
} }
get type() { return "code"; } get type() { return "code"; }