mirror of
https://github.com/alberti42/obsidian-plugins-annotations.git
synced 2026-07-22 10:10:24 +00:00
Small improvement
This commit is contained in:
parent
9b97a54f27
commit
d00935d1f5
2 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "plugins-annotations",
|
||||
"name": "Plugins Annotations",
|
||||
"version": "1.5.4",
|
||||
"version": "1.6.1",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Allows adding personal comments to each installed plugin.",
|
||||
"author": "Andrea Alberti",
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ export async function writeAnnotationsToMdFile(plugin: PluginsAnnotations) {
|
|||
const annotations = plugin.settings.annotations;
|
||||
// if(Object.keys(annotations).length === 0) return;
|
||||
|
||||
const header = 'Make changes only within the annotation blocks marked by <!-- BEGIN ANNOTATION --> and <!-- END ANNOTATION -->. Changes made anywhere else will be overwritten.\n'
|
||||
const header = 'Make changes only within the annotation blocks marked by `<!-- BEGIN ANNOTATION -->` and `<!-- END ANNOTATION -->`. Changes made anywhere else will be overwritten.\n'
|
||||
|
||||
const content: string[] = [header];
|
||||
for (const pluginId of sortPluginAnnotationsByName(annotations)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue