Small improvement

This commit is contained in:
Andrea Alberti 2024-08-18 04:48:56 +02:00
parent 9b97a54f27
commit d00935d1f5
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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)) {