custom element for embedding Bluesky posts and feeds mary-ext.github.io/bluesky-embed
typescript npm bluesky atcute
7
fork

Configure Feed

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

chore: fmt

Mary 5138c237 81d9bc3b

+15 -6
+9 -1
.prettierrc
··· 6 6 "semi": true, 7 7 "singleQuote": true, 8 8 "bracketSpacing": true, 9 - "plugins": ["prettier-plugin-css-order"] 9 + "plugins": ["prettier-plugin-css-order"], 10 + "overrides": [ 11 + { 12 + "files": ["tsconfig.json", "jsconfig.json"], 13 + "options": { 14 + "parser": "jsonc" 15 + } 16 + } 17 + ] 10 18 }
+1 -3
.vscode/extensions.json
··· 1 1 { 2 - "recommendations": [ 3 - "esbenp.prettier-vscode" 4 - ] 2 + "recommendations": ["esbenp.prettier-vscode"] 5 3 }
+4 -1
docs/index.html
··· 114 114 <p>A custom element for embedding Bluesky posts.</p> 115 115 <p>See <a href="https://github.com/mary-ext/bluesky-post-embed">GitHub repository</a> for details.</p> 116 116 117 - <bluesky-post src="https://bsky.app/profile/did:plc:ragtjsm2j2vknwkz3zp4oxrd/post/3kj2umze7zj2n" theme="light"> 117 + <bluesky-post 118 + src="https://bsky.app/profile/did:plc:ragtjsm2j2vknwkz3zp4oxrd/post/3kj2umze7zj2n" 119 + theme="light" 120 + > 118 121 <blockquote class="bluesky-post-fallback"> 119 122 <p dir="auto">angel mode</p> 120 123 &mdash; Paul Frazee 🦋 (@pfrazee.com)
+1 -1
tsconfig.json
··· 21 21 "verbatimModuleSyntax": true, 22 22 }, 23 23 "include": ["src", "lib"], 24 - "references": [{ "path": "./tsconfig.node.json" }] 24 + "references": [{ "path": "./tsconfig.node.json" }], 25 25 }