Skip to content

Commit 8676030

Browse files
committed
Fixed
- README.md had some arrow tags that were not opened correctly - Code comments had the old tag format
1 parent c58052b commit 8676030

File tree

7 files changed

+22
-14
lines changed

7 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- none
1111

12+
## [1.1.1] - 2024-11-15
13+
14+
### Fixed
15+
16+
- README.md had some arrow tags that were not opened correctly
17+
- Code comments had the old tag format
18+
1219
## [1.1.0] - 2024-11-15
1320

1421
### Changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,17 +138,17 @@ See Examples Markdown Documents
138138

139139
---
140140

141-
### With Arrow (using `[[<tag|label|bgcolor))`)
141+
### With Arrow (using `((<tag|label|bgcolor))`)
142142

143143
#### MVP
144144

145-
- `[[<tag|mvp|grey))`
146-
- `[[<tag|mvp|green))`
147-
- `[[<tag|mvp|yellow))`
148-
- `[[<tag|mvp|orange))`
149-
- `[[<tag|mvp|blue))`
150-
- `[[<tag|mvp|purple))`
151-
- `[[<tag|mvp|red))`
145+
- `((<tag|mvp|grey))`
146+
- `((<tag|mvp|green))`
147+
- `((<tag|mvp|yellow))`
148+
- `((<tag|mvp|orange))`
149+
- `((<tag|mvp|blue))`
150+
- `((<tag|mvp|purple))`
151+
- `((<tag|mvp|red))`
152152

153153
... _(repeat as necessary for remaining tags: on-hold, tbd, proposed, draft, mvp, etc.)_
154154

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const labelMap = [
1010
];
1111
const colorMap = ["grey", "green", "yellow", "orange", "blue", "purple", "red"];
1212

13-
// Regular expression to match custom tag syntax like [[tag|label|bgcolor|fgcolor]]
13+
// Regular expression to match custom tag syntax like ((tag|label|bgcolor|fgcolor))
1414
const tagSyntaxRegex = /\(\(<?tag\|(?<label>[^\)|]+)(?:\|(?<bgcolor>[^\)|]*))?(?:\|(?<fgcolor>[^\)|]*))?\)\)/g;
1515

1616
const isValidHexColor = (color: string): boolean => /^#([0-9A-Fa-f]{3}){1,2}$/.test(color);

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "markdown-tags",
33
"name": "Markdown Tags",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"minAppVersion": "0.12.0",
66
"description": "Enhance your documents with custom tags. Use predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses.",
77
"author": "John Smith III",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-markdown-tags",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Enhance your documents with custom tags. Use predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses.",
55
"main": "main.js",
66
"repository": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"1.0.0": "0.12.0",
33
"1.0.1": "0.12.0",
44
"1.0.2": "0.12.0",
5-
"1.1.0": "0.12.0"
5+
"1.1.0": "0.12.0",
6+
"1.1.1": "0.12.0"
67
}

0 commit comments

Comments
 (0)