https://github.com/fraoustin/redmine_admonition
add admonition in redmine
https://github.com/fraoustin/redmine_admonition
redmine redmine-plugin
Last synced: 8 months ago
JSON representation
add admonition in redmine
- Host: GitHub
- URL: https://github.com/fraoustin/redmine_admonition
- Owner: fraoustin
- License: gpl-2.0
- Created: 2019-12-04T14:04:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-22T17:50:08.000Z (over 1 year ago)
- Last Synced: 2025-02-22T18:33:47.610Z (over 1 year ago)
- Topics: redmine, redmine-plugin
- Language: Ruby
- Size: 14.6 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Redmine Admonition Plugin
From idea https://github.com/dseifert/redmine_wiki_notes
## Plugin installation
1. Copy the plugin directory into the vendor/plugins directory
2. Restart Redmine
with a Dockerfile
```
FROM redmine
WORKDIR /usr/src/redmine/plugins
RUN git clone https://github.com/fraoustin/redmine_admonition.git
WORKDIR /usr/src/redmine/
```
## Usage
The following macros are added:
* note
* info
* warning
* alert
which can be used in one of three ways:
```
{{note(text with *wiki formatting*)}}
{{note
Alternately, you can put blocks of *wiki-formatted* text here.
}}
```
This displays a block in the wiki page with a corresponding
icon and the specified text.
## License
This plugin is released under the GPLv2.