diff options
Diffstat (limited to 'nuldoc-src/xml.ts')
| -rw-r--r-- | nuldoc-src/xml.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nuldoc-src/xml.ts b/nuldoc-src/xml.ts index 9c0ea45..f07161f 100644 --- a/nuldoc-src/xml.ts +++ b/nuldoc-src/xml.ts @@ -1,9 +1,6 @@ import { Element, Node, Text } from "./dom.ts"; import { XmlParseError } from "./errors.ts"; -// TODO -// Support comment? <!-- --> - export async function parseXmlFile(filePath: string): Promise<Element> { const source = await Deno.readTextFile(filePath); return parse({ source: source, index: 0 }); |
