Home
last modified time | relevance | path

Searched refs:parseUntil (Results 1 – 3 of 3) sorted by relevance

/plugin/asciidocjs/node_modules/character-parser/
DREADME.md31 var section = parser.parseUntil('foo.bar("%>").baz%> bing bong', '%>');
36 var section = parser.parseUntil('<%foo.bar("%>").baz%> bing bong', '%>', {start: 2});
42 var section = parser.parseUntil('#[p= [1, 2][i]]', ']', {start: 2})
50 var section = parser.parseUntil('#[p= [1, 2][i]]', '}', {start: 2, ignoreNesting: true})
71 ### parseUntil(src, delimiter, options = {start: 0, ignoreLineComment: false, ignoreNesting: false})
141 …tify what sort of error is thrown. For errors thrown from `parse` and `parseUntil`, an additional …
161 …usefulness of this function has been questioned. You should find that `parseUntil` is a better cho…
163 ### `parseUntil`
173 This function has been merged into `parseUntil`. You can directly rename the function call without …
Dindex.js46 exports.parseUntil = parseUntil;
47 function parseUntil(src, delimiter, options) { function
/plugin/asciidocjs/node_modules/pug-lexer/
Dindex.js241 range = characterParser.parseUntil(this.input, end, {start: skip + 1});
987 parsed = characterParser.parseUntil(code, ']');