D&D Beyond Character Sheet–Embedding Link in Blog

There is a discussion here which provides general discussion on how to create a link to a D&D Beyond Character Sheet. But in general it seems that these links are not “live” but rather views of your character at a certain time.

The default link I get looks like this:

<p>
<a href=”https://www.dndbeyond.com/profile/schwarm/characters/13354623”>
<embed src=”https://media-waterdeep.cursecdn.com/avatars/6423/861/636974425709030074.jpeg” width="400" height="211">
</embed>
</a>
</p>

which does not really work, the image is broken and is not real time data…Making these live links should not be that hard to figure out…

If I insert the image & view the source WordPress is using the Figure tag, not the embed tag, so I swapped that around to this:

<figure class="wp-block-image"> 
  <a href=”https://www.dndbeyond.com/profile/schwarm/characters/13354623”>
    <img src="https://media-waterdeep.cursecdn.com/avatars/6423/861/636974425709030074.jpeg" alt=""/>
  </a>
</figure>

Leave a comment