Comment on page
HTML References
Using ord:// and sat:// URL protocol handlers to reference inscriptions.
HTML inscriptions can reference relative file paths to
/content/<outpoint>
to automatically have the content detected and returned as a file. For more information on how this resolution works under the hood visit ordfs.network.You can embed references to other inscriptions inside the on-chain HTML or markdown. You can address.
An ordinal number is the precise satoshi identifier.
Inscription ID
is the transaction id, and output index of a specific inscription, formatted as: txid_vout
In a text/html inscription:
<img src="ord://ordinalNumber" />
In a text/markdown inscription:
[My Ordinal!]("ord://ordinalNumber")
In a text/html inscription:
<img src="ord://inscriptionID" />
In a text/markdown inscription:
[My Ordinal!]("ord://inscriptionID")
Use the
#latest
fragment to return the latest inscription for a given ordinal number, or inscription ID.In a text/html inscription:
<img src="ord://ordinalNumber#latest" />
In a text/markdown inscription:
[My Ordinal!]("ord://ordinalNumber#latest")
In a text/html inscription:
<img src="ord://inscriptionID#latest" />
In a text/markdown inscription:
[My Ordinal!]("ord://inscriptionID#latest")
URL | resolves to |
---|---|
ord://ordinalNumber | original inscription |
ord://inscriptionID | specific inscription |
ord://ordinalNumber#latest | latest inscription |
ord://inscriptionID#latest | latest inscription |
Last modified 16d ago