Lines Matching refs:EOL
85 return unescape(renderer.render(tokens).trim() + EOL);
179 const EOL = '\n'; constant
230 return this.indent(token.depth, '#') + ' ' + token.text + EOL.repeat(2);
242 return output + EOL;
253 output += this.renderToken(token.tokens[0], ctx).trim() + EOL;
257 output += this.renderToken(child, { ...ctx, indent: indent + 1 }).trimRight() + EOL;
259 return output.trimRight() + EOL;
263 return this.indent(ctx.indent) + token.text + EOL;
273 return EOL;
277 const lines = token.text.split(EOL);
283 return indentStr + lines.join(EOL + indentStr);
293 .join(EOL + indentStr)