update readme and version number

This commit is contained in:
Jun Young Bang 2025-12-18 17:51:34 +09:00
parent 909edc0d71
commit 0318446f25
5 changed files with 9 additions and 7 deletions

View file

@ -1,16 +1,17 @@
# Remember Code Block Language
Ever find yourself typing the same language name over and over when creating code blocks? This plugin remembers the last language you used and automatically suggests it the next time you create a code block.
This plugin remembers the last language you used and automatically add it to the code block the next time you create a code block.
Just start typing a code block (```) and it'll automatically insert your last used language. You can also set a default language in settings if you tend to use one language more than others.
## Features
- Automatically remembers your last used code block language
- Auto-injects the language when you type a code block (can be disabled in settings)
- Command to insert a code block with the remembered language
- Customizable default language
## Installation
Install from the Community Plugins browser in Obsidian, or manually install by copying `main.js`, `manifest.json` to your vault's `.obsidian/plugins/remember-code-block-lang/` folder.

View file

@ -1,7 +1,7 @@
{
"id": "remember-code-block-lang",
"name": "Remember Code Block Language",
"version": "1.0.4",
"version": "1.0.5",
"minAppVersion": "0.15.0",
"description": "Remember the language of the last code block you used and automatically insert it next time.",
"author": "Junyoung Bang",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "remember-code-block-lang",
"version": "1.0.2",
"version": "1.0.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "remember-code-block-lang",
"version": "1.0.2",
"version": "1.0.5",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",

View file

@ -1,6 +1,6 @@
{
"name": "remember-code-block-lang",
"version": "1.0.2",
"version": "1.0.5",
"description": "Remember the language of the last code block you used and automatically insert it next time",
"main": "main.js",
"scripts": {

View file

@ -1,3 +1,4 @@
{
"1.0.0": "0.15.0"
"1.0.0": "0.15.0",
"1.0.5": "0.15.0"
}