@formspec/build 0.1.0-alpha.23 → 0.1.0-alpha.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1150,6 +1150,9 @@ function extractBlockText(block) {
1150
1150
  }
1151
1151
  function extractPlainText(node) {
1152
1152
  let result = "";
1153
+ if (node instanceof import_tsdoc.DocExcerpt) {
1154
+ return node.content.toString();
1155
+ }
1153
1156
  if (node instanceof import_tsdoc.DocPlainText) {
1154
1157
  return node.text;
1155
1158
  }