Skip to content

Commit

Permalink
add appGroup from lens-converter to skip heading "Appendices"
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Riedel authored and Marcel Riedel committed Apr 21, 2022
1 parent 19b6dd8 commit 3b4914f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/dai_converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ DaiConverter.Prototype = function() {
"speaker": true
};

this.appGroup = function(state, appGroup) {
var title = appGroup.querySelector('title');
if (!title) {
console.error("FIXME: every app should have a title", this.toHtml(title));
}
};

this._bodyNodes["table-wrap"] = function (state, child) {
return this.tableWrap(state, child);
};
Expand Down

0 comments on commit 3b4914f

Please sign in to comment.