Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreasthinks/quarto-mastodon-comments
a Quarto extension to add Mastodon powered comments to blogs and articles
https://github.com/andreasthinks/quarto-mastodon-comments
blog comments fediverse mastodon quarto quarto-extension
Last synced: about 1 month ago
JSON representation
a Quarto extension to add Mastodon powered comments to blogs and articles
- Host: GitHub
- URL: https://github.com/andreasthinks/quarto-mastodon-comments
- Owner: AndreasThinks
- License: gpl-3.0
- Created: 2024-04-22T22:22:17.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T09:03:46.000Z (3 months ago)
- Last Synced: 2024-10-14T07:20:10.947Z (about 1 month ago)
- Topics: blog, comments, fediverse, mastodon, quarto, quarto-extension
- Language: JavaScript
- Homepage:
- Size: 38.1 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mastodon-comments for Quarto
This extension adds Mastodon Comments based on [the excellent webcomponent by dpecos.](https://github.com/dpecos/mastodon-comments?tab=readme-ov-file) You can see (and leave a comment on) a [working example on my blog here.](https://andreasthinks.me/posts/quarto_comments/)## Installing
```sh
quarto install extension AndreasThinks/quarto-mastodon-comments
```This will install the extension under the `_extensions` subdirectory.
If you're using version control, you will want to check in this directory.## Using
1. To add comments to your post, you must first create a post about your content (for example, an announcement post). You can click on this post to obtain the relevant "toot id" from the URL.
2. Create a post on your quarto blog, and add the below to your post, with the relevant username, server and toot id.
3. Render and publish your post. You should now see the comments section at the bottom of your post.```yaml
filters:
- mastodon-comments
mastodon_comments:
user: "AndreasThinks"
host: "fosstodon.org"
toot_id: "111995180253316042"
```