No description
Find a file
2026-01-23 18:28:44 +09:00
.github/workflows ci: check version 2025-10-26 16:56:20 +09:00
src Revert "fix: limit caching" 2026-01-23 18:20:04 +09:00
.gitignore implement the plugin 2025-06-08 15:14:42 +09:00
deno.jsonc fix: add external 2026-01-23 18:28:20 +09:00
deno.lock fix: add external 2026-01-23 18:28:20 +09:00
esbuild.config.ts fix: add external 2026-01-23 18:28:20 +09:00
eslint.config.js chore: add eslint-plugin-obsidianmd 2025-09-05 08:49:32 +09:00
LICENSE Create LICENSE 2025-06-17 23:35:13 +09:00
manifest.json 1.0.12 2026-01-23 18:28:44 +09:00
README.md fix: dont use Obsidian prefix 2025-09-02 18:37:00 +09:00
versions.json Initial commit 2025-06-07 21:32:46 +09:00

LiteCite

A lightweight Obsidian plugin that creates citation notes from a BibTeX / BibLaTeX file.

While this plugin might seem like a "re-invention of the wheel" for the Citations plugin, it is no longer actively maintained. I've developed this new plugin to be lighter, simpler, and faster.

It leverages Eta as its templating engine and uses a custom-built parser for BibTeX entries.

This plugin is based on the ras0q/obsidian-plugin-deno-template template.

Usage

  1. Install and enable the plugin
  2. Open the plugin settings and set the path to your BibTeX file
  3. Use the command LiteCite: Create note from BibTeX to create a new note from a BibTeX entry

Development

  1. Install Deno
  2. Run deno task dev, which will:
    • Clone the sample vault to ./vault-for-my-feature
    • Build the plugin with live reload
  3. Open the sample vault in Obsidian
  4. Enable the plugin in Obsidian settings

IDE Integration

VSCode

{
  "[css]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "[json]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "[jsonc]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "[markdown]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "[typescript]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "[yaml]": {
    "editor.defaultFormatter": "denoland.vscode-deno"
  },
  "deno.enable": true,
  "deno.lint": true,
}

Release

  1. Update the version in manifest.json
  2. Run deno task build, which will:
    • Build the plugin to ./dist
  3. Commit and push the changes to GitHub
  4. Run gh release create {{version}} ./dist/main.js ./dist/manifest.json ./dist/styles.css --generate-notes --draft --fail-on-no-commits