Replies (1)

I’m doing some tests to see how the Nostr notes are getting rendered on my personal website. I’m doing a massive refactoring of the blog section. Part of it is adding new features like rendering link previews and displaying the note content in the correct order. Besides implementing new features, I’m also redoing existing code to make it more maintainable. The part about displaying content in the correct order is basically like this: If the note’s content is text, image, text and a video, then that’s the way the note should be rendered. Currently, on my website, the note would be rendered with text first, then media (photo and video) last. So, the ordering of elements is wrong. I have it working now where each element is displayed in the correct order, but there’s still much work to be done, like only some link previews working, some photos and videos aren’t rendered, and so on. Annoying bugs that needs to be fixed before releasing… #dev