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.
The following admonitions are supported:
Type | Markdown |
---|---|
Note | > [!NOTE] |
Tip | > [!TIP] |
Important | > [!IMPORTANT] |
Warning | > [!WARNING] |
Caution | > [!CAUTION] |
To use admonitions in your markdown files, simply add the following syntax:
> [!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.
To install the plugin, add it to your Jekyll project's Gemfile
:
group :jekyll_plugins do
# Other plugins go here ...
# ... Add this line:
gem "jekyll-gfm-admonitions"
end
Then run:
bundle install
Next, you need to enable the plugin in your Jekyll configuration file (_config.yml
):
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.
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.
After following the steps you will have to set up a minimal valid Jekyll project.
# Site settings
title: Your Project Title
repository: your-username/your-repository
description: >-
A description of your project
markdown: GFM
plugins:
- jekyll-gfm-admonitions
- jekyll-optional-front-matter
exclude:
- "**/*.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/
.
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'
This project is licensed under the MIT License. See the LICENSE.txt file for details.
Contributions are welcome! Please feel free to submit issues or pull requests.