archieml-js
archieml-js copied to clipboard
JavaScript parser for the Archie Markup Language (ArchieML)
Hey there! I belong to an open source security research community, and a member (@yetingli) has found an issue, but doesn’t know the best way to disclose it. If not...
following these instructions: https://github.com/newsdev/archieml-js/tree/master#using-with-google-documents set up google API, installed npm packages, then ran `node examples/google_drive.js` and I get error in console: ``` internal/modules/cjs/loader.js:1023 throw err; ^ Error: Cannot find module...
When you type an asterisk before a string of text in Google Docs: ``` * This is a string. ``` It tries to turn it into a bulleted list: >...
The instructions don't work at the moment because the `googleapis` package made some breaking changes [last year](https://github.com/googleapis/google-api-nodejs-client/releases/tag/v25.0.0). This PR changes the way the package gets imported and some parameters in...
I had a use case for converting JSON to ArchieML. I've written an ArchieML generator and wanted to make it available to the ArchieML ecosystem. You can see the generator...
Enter a value which contains HTML ``` key: hello ``` and the output isn't escaped ```json { "key": "hello" } ```
Is there a archieml-js method that I'm missing that can convert json into AML? My use case involves having a server that retrieves a AML google doc parses it and...
It will be great if AML can parse numbers as numbers instead of strings. Or even better support for boolean and date.
I think it would make sense to add some real tests for archieml-js, maybe in form of a proper `vows.js` test suite. I don't get how the current `phantomjs` tests...