Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/helveg/jekyll-gfm-admonitions
Jekyll plugin for GitHub flavored Markdown admonition syntax
https://github.com/helveg/jekyll-gfm-admonitions
Last synced: 10 days ago
JSON representation
Jekyll plugin for GitHub flavored Markdown admonition syntax
- Host: GitHub
- URL: https://github.com/helveg/jekyll-gfm-admonitions
- Owner: Helveg
- License: mit
- Created: 2024-09-26T00:46:25.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-01T18:28:50.000Z (15 days ago)
- Last Synced: 2025-01-01T19:28:19.218Z (15 days ago)
- Language: Ruby
- Size: 57.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# GitHub Flavored Admonitions
A Jekyll plugin to render GitHub-flavored admonitions in your Jekyll sites.
This plugin allows you to use GitHub-flavored markdown syntax to create stylish admonition
blocks for notes, warnings, tips, cautions, and important messages.## Supported Admonitions
The following admonitions are supported:
| **Type** | **Markdown** |
|---------------|-----------------------|
| Note | `> [!NOTE]` |
| Tip | `> [!TIP]` |
| Important | `> [!IMPORTANT]` |
| Warning | `> [!WARNING]` |
| Caution | `> [!CAUTION]` |### Example Usage
To use admonitions in your markdown files, simply add the following syntax:
```markdown
> [!NOTE]
> Highlights information that users should take into account, even when skimming.> [!TIP]
> Optional information to help a user be more successful.> [!IMPORTANT]
> Crucial information necessary for users to succeed.> [!WARNING]
> Critical content demanding immediate user attention due to potential risks.> [!CAUTION]
> Negative potential consequences of an action.
```> [!NOTE]
> Highlights information that users should take into account, even when skimming.> [!TIP]
> Optional information to help a user be more successful.> [!IMPORTANT]
> Crucial information necessary for users to succeed.> [!WARNING]
> Critical content demanding immediate user attention due to potential risks.> [!CAUTION]
> Negative potential consequences of an action.## Installation
To install the plugin, add it to your Jekyll project's `Gemfile`:
```ruby
group :jekyll_plugins do
# Other plugins go here ...
# ... Add this line:
gem "jekyll-gfm-admonitions"
end
```Then run:
```bash
bundle install
```### Configuring Jekyll
Next, you need to enable the plugin in your Jekyll configuration file (`_config.yml`):
```yaml
plugins:
- jekyll-gfm-admonitions
```Then, during `build`/`serve`, you should see logs similar to:
```
GFMA: Converted adminitions in 36 file(s).
GFMA: Injecting admonition CSS in 36 page(s).
```More details are available by passing the `--verbose` flag to your `jekyll` command.
## When using GitHub Pages
To enable custom plugins in your Jekyll build for GitHub Pages, you need to use GitHub
Actions (GHA) to build and deploy your Jekyll site. For detailed instructions on setting
up GitHub Actions for your Jekyll project, please follow this link:
[GitHub Actions Setup for Jekyll](https://jekyllrb.com/docs/continuous-integration/github-actions/).After following the steps you will have to set up a minimal valid Jekyll project.
### Add a `_config.yml`
```yaml
# Site settings
title: Your Project Title
repository: your-username/your-repository
description: >-
A description of your projectmarkdown: GFM
plugins:
- jekyll-gfm-admonitions
- jekyll-optional-front-matterexclude:
- "**/*.ts" # Exclude source code files!
- "**/*.js"
- "*.ts" # Also those in the root directory!
- "*.js"
- "*.json" # Don't forget about assets!
- node_modules/ # And large vendored directories
# And these ignore all the artifacts the build produces:
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
```> [!CAUTION]
>
> For private repositories, make sure you exclude your source code files from the Jekyll
> build, or they might be publicly deployed! Also exclude large vendored package
> directories such as `node_modules/`.### Add a `Gemfile`:
```ruby
source 'https://rubygems.org'
gem 'jekyll'
group :jekyll_plugins do
gem 'jekyll-gfm-admonitions'
gem 'jekyll-optional-front-matter'
gem 'github-pages'
end
gem 'jekyll-remote-theme'
```## License
This project is licensed under the MIT License. See the [LICENSE.txt](LICENSE.txt) file
for details.## Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.