123456789101112131415 |
- showdown.subParser('makeMarkdown.tableCell', function (node, globals) {
- 'use strict';
- var txt = '';
- if (!node.hasChildNodes()) {
- return '';
- }
- var children = node.childNodes,
- childrenLength = children.length;
- for (var i = 0; i < childrenLength; ++i) {
- txt += showdown.subParser('makeMarkdown.node')(children[i], globals, true);
- }
- return txt.trim();
- });
|