@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.
package/dist/index.cjs CHANGED
@@ -1897,6 +1897,9 @@ function extractBlockText(block) {
1897
1897
  }
1898
1898
  function extractPlainText(node) {
1899
1899
  let result = "";
1900
+ if (node instanceof import_tsdoc.DocExcerpt) {
1901
+ return node.content.toString();
1902
+ }
1900
1903
  if (node instanceof import_tsdoc.DocPlainText) {
1901
1904
  return node.text;
1902
1905
  }