Various AT Protocol integrations with obsidian
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

annotate disable rules

+4
+3
src/settings.ts
··· 53 53 54 54 new Setting(containerEl) 55 55 .setName("Auth service") 56 + // This contains the acronym "PDS", a term used for AT Protocol 57 + // as well as URL, an acronym 56 58 // eslint-disable-next-line obsidianmd/ui/sentence-case 57 59 .setDesc("PDS or PDS entryway URL (leave empty to use bsky.social service) ") 58 60 .addText((text) => 59 61 text 62 + // This is a URL and should not be sentence-cased 60 63 // eslint-disable-next-line obsidianmd/ui/sentence-case 61 64 .setPlaceholder("https://bsky.social") 62 65 .setValue(this.plugin.settings.serviceUrl)
+1
src/views/atmark.ts
··· 47 47 } 48 48 49 49 getDisplayText() { 50 + // This is the name of the plugin, which contains the acronym "AT" 50 51 // eslint-disable-next-line obsidianmd/ui/sentence-case 51 52 return "ATmark"; 52 53 }