1
0
Fork
You've already forked obsidian-comments
0
A simple Obsidian plugin allowing you to add comments to your Markdown files.
  • TypeScript 74.2%
  • CSS 15.4%
  • JavaScript 10.4%
Find a file
2025年05月05日 14:44:43 +02:00
.editorconfig Initial commit 2024年12月02日 09:10:09 +01:00
.eslintignore Initial commit 2024年12月02日 09:10:09 +01:00
.eslintrc Initial commit 2024年12月02日 09:10:09 +01:00
.gitignore Initial commit 2024年12月02日 09:10:09 +01:00
.npmrc Initial commit 2024年12月02日 09:10:09 +01:00
esbuild.config.mjs Initial commit 2024年12月02日 09:10:09 +01:00
LICENSE Create LICENSE 2025年04月15日 11:22:38 +02:00
main.ts Fix small changes requested by obsidian 2025年05月05日 14:44:43 +02:00
manifest.json Update manifest.json 2025年04月15日 11:24:02 +02:00
package-lock.json postprocessor fixes and style updates 2025年04月14日 16:26:16 +02:00
package.json postprocessor fixes and style updates 2025年04月14日 16:26:16 +02:00
README.md Fix small changes requested by obsidian 2025年05月05日 14:44:43 +02:00
styles.css postprocessor fixes and style updates 2025年04月14日 16:26:16 +02:00
tsconfig.json Initial commit 2024年12月02日 09:10:09 +01:00
version-bump.mjs Initial commit 2024年12月02日 09:10:09 +01:00
versions.json Initial commit 2024年12月02日 09:10:09 +01:00

Comments

This plugin adds basic comment functionality so you can collaborate easier accross teams.

How it works

A new callout is defined

> [!comment] NAME | DATE
> COMMENT

If you click the ribbon to open the plugin, a view will open that will show all comments within the file (like in Word). This will show the name, date, and content of the comment (specified like in the callout above).

Functionalities

  • Command to quickly add a comment (CTRL + P --> Comments: Add new comment)
  • Quickly remove comments by right clicking on the comment in the right view
  • Quickly add subcomments by right clicking on the comment in the right view
  • Quickly navigate to the place of the comment by left clicking the comment in the right view
  • Comments are hidden in reading mode and when exporting it to other documents (e.g. PDF)

Improvements

  • Setting to choose hide behaviour
  • ?