This project is for trying out and experimenting with the docutils-ts library.
'docutils-ts' is a TypeScript port of the original Python 'docutils' library.
To experiment with the docutils-ts library using this project, follow these steps:
-
Prerequisites:
- Ensure you have Node.js installed on your system.
-
Clone the repository:
git clone https://github.com/boltex/docutils-ts-test.git cd docutils-ts-test -
Install dependencies: This command will install the
docutils-tslibrary and other necessary TypeScript build tools.npm install
-
Experiment:
- The
src/index.tsfile contains some sample imports and function calls to thedocutils-tslibrary. You can run it as-is or modify it to explore different functionalities.
- The
-
Build and Run Scripts:
- The
package.jsonfile includes scripts for building and running the project. - If you are using Visual Studio Code, these scripts should be visible in the 'NPM SCRIPTS' section, typically found below the file explorer in the side tab. You can run them from there.
To run the project from the command line:
npm run build npm start
- The