Note:: Please report any bugs you encounter by opening a new issue on GitHub.
Add icons to your Obsidian notes. Supported icon sets:
- Remix Icon - 2172 icons
- FontAwesome (Free) - 1560 icons
- Roadmap includes more icon sets
You can toggle which icon set(s) you want to display in the icon picker from within the Icons Plugin settings.
This plugin uses react-icons to render icons via a Markdown postprocessor. Inspired by obsidian-citation-plugin and based on obsidian-sample-plugin.
A demonstration video showing the icon picker and the rendered markdown.
Select any icon from the icon picker (selectively activate icon packs in the settings).
The rendered markdown will display the icons accordingly.
As this is an experimental plugin, bugs are expected to occur. Kindly open an issue in this repository and describe in detail what bug you encountered.
Icon Set | License | Version | Count |
---|---|---|---|
Font Awesome | CC BY 4.0 License | 5.12.1 | 1560 |
Remix Icon | Apache License Version 2.0 | 2.5.0 | 2172 |
In order to customize the icons in order to change their color, size, etc, you should make a CSS snippet.
To do this, follow these steps:
- Go to Settings -> Appearance -> CSS Snippets
- Turn on the CSS Snippets option and then click the folder to navigate to it's folder.
- Make a new file called icons.css
- Open icons.css in your preferred text editor
- Add the following:
.obsidian-icon { ... changes go here. }
- Go Back to Settings -> Appearance -> CSS Snippets
- Click the reload button
- A button with the title "icons" should appear, turn it on.
Your changes will now be applied and you can edit the file when you want.
- Clone this repo to
./your-obsidian-vault/.obsidian/plugins/
yarn
to install dependenciesnpm run dev
to start compilation in watch mode.
- Update your
manifest.json
with your new version number, such as1.0.1
, and the minimum Obsidian version required for your latest release. - Update your
versions.json
file with"new-plugin-version": "minimum-obsidian-version"
so older versions of Obsidian can download an older version of your plugin that's compatible. - Create new GitHub release using your new version number as the "Tag version". Use the exact version number, don't include a prefix
v
. See here for an example: https://github.com/obsidianmd/obsidian-sample-plugin/releases - Upload the files
manifest.json
,main.js
,styles.css
as binary attachments. - Publish the release.
- Use
make release
for convenience
- Copy over
main.js
,styles.css
,manifest.json
to your vaultVaultFolder/.obsidian/plugins/obsidian-icons-plugin/
.