Embedding
Remarks can be embedded by copying the below code and replacing the parameters with the remark you want to embed, then adding the code snippet to your site's HTML:
<blockquote
data-remarking-uri="/${username}/${doc_id}/${remark_id}"
></blockquote>
<script
async
src="https://embed.remark.ing/static/embed.js"
charset="utf-8"
></script>username is not optional, but doc_id and remark_id are. By just providing username, you'll be grabbing the latest remark across all of that person's blogs; if you provide both username and doc_id, you'll get the latest of that blog. By providing all three you'll get that specific remark.
To embed a full feed instead of only the latest remark, append ?feed=1 to the data-remarking-uri. This works for both user feeds (/${username}) and individual blogs (/${username}/${doc_id}).
<blockquote data-remarking-uri="/${username}/${doc_id}?feed=1"></blockquote>
<script
async
src="https://embed.remark.ing/static/embed.js"
charset="utf-8"
></script>You can further tweak the iframe with optional query parameters:
theme— chooselight,dark, orsystem(default) to control the color mode.background— provide a hex color (e.g.#ffffff,#0f172a, orf5f5f580) to set the iframe's body background.
These parameters can be combined with feed. For example:
<blockquote
data-remarking-uri="/${username}/${doc_id}?feed=1&theme=dark&background=%23f8fafc"
></blockquote>
<script
async
src="https://embed.remark.ing/static/embed.js"
charset="utf-8"
></script>The embedded feed paginates automatically when there are more than 20 remarks, and navigation links are included within the iframe.
For example, this code snippet:
<blockquote data-remarking-uri="/markwhen/markwhen"></blockquote>
<script
async
src="https://embed.remark.ing/static/embed.js"
charset="utf-8"
></script>Results in an inline element that looks like this:
Note
Only public blogs or remarks are embeddable.
Generator
Use the generator below to build an embed snippet for any publicly visible remark or feed. Paste a remark.ing URL or path, choose whether you want the latest remark or the full feed, then copy the generated HTML into your site.
Paste a remark.ing link like https://remark.ing/markwhen/markwhen or a path such as /markwhen/markwhen.
Optional hex color for the iframe background. Supports short and long hex like #fff, #ffffff, or ffffffdd for transparency.
<blockquote data-remarking-uri="/markwhen/markwhen"></blockquote>
<script async src="https://embed.remark.ing/static/embed.js" charset="utf-8"></script>