mangini/gdocs2md

Support for Horizontal Rules

ErikUggeldahl opened this issue · 1 comments

Currently throws an exception at ~line 110 if a horizontal rule is encountered.

Suggested fix:

else if (t === DocumentApp.ElementType.HORIZONTAL_RULE) {
textElements.push('* * *\n');
}

fixed