mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
* FEATURE: Bundle discourse-spoiler-alert plugin into core
Formerly https://github.com/discourse/discourse-spoiler-alert
* DEV: Switch to new addComposerToolbarPopupMenuOption plugin API
`api.addToolbarPopupMenuOptionsCallback` has been deprecated in 913fd3a7b392b492f6344102577960a6eada00ce
This commit was just added to the plugin, so adding it here.
49f86ba72e
42 lines
874 B
Markdown
42 lines
874 B
Markdown
# discourse-spoiler-alert
|
|
|
|
https://meta.discourse.org/t/discourse-spoiler-alert/12650/
|
|
|
|
Spoiler plugin for [Discourse](http://discourse.org) highly inspired by the [spoiler-alert](http://joshbuddy.github.io/spoiler-alert/) jQuery plugin.
|
|
|
|
## Usage
|
|
|
|
In your posts, surround text or images with `[spoiler]` ... `[/spoiler]`.
|
|
For example:
|
|
|
|
```
|
|
I watched the murder mystery on TV last night. [spoiler]The butler did it[/spoiler].
|
|
```
|
|
|
|
## Installation
|
|
|
|
- Add the plugin's repo url to your container's `app.yml` file
|
|
|
|
```yml
|
|
hooks:
|
|
after_code:
|
|
- exec:
|
|
cd: $home/plugins
|
|
cmd:
|
|
- mkdir -p plugins
|
|
- git clone https://github.com/discourse/docker_manager.git
|
|
- git clone https://github.com/discourse/discourse-spoiler-alert.git
|
|
```
|
|
|
|
- Rebuild the container
|
|
|
|
```
|
|
cd /var/discourse
|
|
git pull
|
|
./launcher rebuild app
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|