Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huzunjie/esdoc-replace-plugin
A text replace plugin for ESDoc.
https://github.com/huzunjie/esdoc-replace-plugin
Last synced: 4 days ago
JSON representation
A text replace plugin for ESDoc.
- Host: GitHub
- URL: https://github.com/huzunjie/esdoc-replace-plugin
- Owner: huzunjie
- Created: 2017-07-06T02:42:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-06T02:45:54.000Z (over 7 years ago)
- Last Synced: 2024-09-07T02:00:34.360Z (2 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# text replace
> A copyfile plugin for ESDoc.
Config example:
```
{
"title": "example",
"source": "./src",
"destination": "./esdoc" ,
"plugins": [{
"name": "esdoc-replace-plugin",
"option": [{
"filepath": "./esdoc/css/style.css",
"rules": [{
"substr": "./esdoc/css",
"replacement": "val"
},{
"regexp": "test(\\d+)",
"replacement": "testNum"
}]
}]
}]
}
```