jemisa / Web-Parser

The parser for MicroPad: https://getmicropad.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

upad-parse

This is the parser used for MicroPad.

You can find the docs here: https://getmicropad.com/docs/upad-parse.

Install

JavaScript

npm install --save upad-parse or yarn add upad-parse

const Notepad = require('upad-parse').Notepad;

let notepad = new Notepad('Test Notepad');
notepad.toXml().then(xml => console.log(xml));

Typescript

import { Notepad } from 'upad-parse/dist';

let notepad = new Notepad('Test Notepad');
notepad.toXml().then(xml => console.log(xml));

Browser

<script type="text/javascript" src="https://unpkg.com/upad-parse@^3/dist/upad-parse.browser.js"></script>
<script type="text/javascript">
	let notepad = new NPXParser.Notepad('Test Notepad');
	notepad.toXml().then(xml => console.log(xml));
</script>

About

The parser for MicroPad: https://getmicropad.com

License:Mozilla Public License 2.0


Languages

Language:TypeScript 65.0%Language:Jupyter Notebook 35.0%