https://github.com/sirap-group/tinymce-plugin-dynamicdate
Plugin for tinymce wysiwyg HTML editor that allow to insert a dynamic date
https://github.com/sirap-group/tinymce-plugin-dynamicdate
date date-time dynamicdate-plugin javascript mit-license plugin tinymce
Last synced: about 1 year ago
JSON representation
Plugin for tinymce wysiwyg HTML editor that allow to insert a dynamic date
- Host: GitHub
- URL: https://github.com/sirap-group/tinymce-plugin-dynamicdate
- Owner: sirap-group
- License: lgpl-2.1
- Created: 2016-05-31T13:41:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-10T17:04:42.000Z (over 8 years ago)
- Last Synced: 2025-03-09T23:25:41.472Z (over 1 year ago)
- Topics: date, date-time, dynamicdate-plugin, javascript, mit-license, plugin, tinymce
- Language: JavaScript
- Size: 157 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dynamicdate
Plugin for tinymce wysiwyg HTML editor that allow to insert a dynamic date
## Development
### Setting up the development environement
### Global dependencies
1. node version >= `v0.12.7` + `npm`
1. bower
1. grunt-cli
### Local dependencies
```
export NODE_ENV=development
npm install
```
### Working on sources
> the source code is located in `src/` folder
### Build the plugin
```
grunt
```
or
```
grunt build
```
### Build the jsdoc API documentation
```
grunt jsdoc
```
### Serve the API documentation
After built the documentation, juste serve it with any staic files server.
You can use my handy automated static server :
- npm card: https://www.npmjs.com/package/autostatic-server
- github repo: https://github.com/rbecheras/node-autostatic-server
Installation:
```
$ [sudo] npm i -g autostatic-server
```
Usage (serving the documentation, your default browser will auto-start)
```
$ autostatic --dir jsdoc/
```