Select the types of activity you want to include in your feed.
fix: show OG title in link header with URL below
When OG preview data loads, update the link header to display the page title instead of the raw URL. The actual URL is shown below in a smaller font for reference.
···227227 return;
228228 }
229229230230+ // Update link header: show OG title prominently with URL below
231231+ if (title) {
232232+ var linkEl = item.querySelector('.link-header .link');
233233+ if (linkEl) {
234234+ var linkAnchor = linkEl.querySelector('a:not(.missing-link)');
235235+ if (linkAnchor) {
236236+ linkAnchor.textContent = title;
237237+ if (!linkEl.querySelector('.link-url') && title !== url) {
238238+ var urlSpan = document.createElement('span');
239239+ urlSpan.className = 'link-url';
240240+ urlSpan.textContent = url;
241241+ linkEl.appendChild(urlSpan);
242242+ }
243243+ }
244244+ }
245245+ }
246246+230247 if (!previewDiv) return;
231248232249 // Only show preview if we have at least an image, title, or description