draggor / scrape-marketplace-listing.js
0 likes
0 forks
1 files
Last active
| 1 | class Zip { |
| 2 | // This is a modified version of https://github.com/pwasystem/zip/ |
| 3 | |
| 4 | constructor(name) { |
| 5 | this.name = name; |
| 6 | this.zip = new Array(); |
| 7 | this.file = new Array(); |
| 8 | this.o = this.makeo(); |
| 9 | } |
| 10 |
draggor / Foundry Markdown to Dokuwiki
0 likes
0 forks
1 files
Last active
Using the FoundryVTT markdown export plugin, convert those files to dokuwiki things, and give a Table of Contents
| 1 | #!/bin/bash |
| 2 | |
| 3 | # This is the FoundryVTT export plugin used to generate these markdown files: |
| 4 | # https://foundryvtt.com/packages/export-markdown |
| 5 | |
| 6 | set -e |
| 7 | |
| 8 | # TODO: Change PREFIX to be optional, get some argparse type things going |
| 9 | PREFIX=$1 |
| 10 | SRC=$2 |
Newer
Older