In the display_og_meta
macro in app/templates/utils.html, the og_meta.title gets used as anchor text. Because Tantek Çelik often uses the entire text of his notes as the title, I noticed there was no length restriction on this, which can get quite messy. My personal solution was to replace og_meta.title
with og_meta.title | truncate(200)
.