> Total PM count is broken for me - it is displayed as 81, when in fact it is nearing 200.
>
> Still impossible to access the site via roleplayerguild.com; all cached information has been cleared a couple of times, so this shouldn't be an issue.
>
> Do I understand correctly that BBCode/HTML-style tags are going to be brought back? The current system is rather wonky, to say the least (especially for a person who tends to use punctuation rather liberally, especially in OoC posts). Besides, Markdown is *not* unambiguously interpreted. (And hey, why is stuff between two asterixes italicized? Most other places that consider this to be text formatting - say, almost anything Google-related - bolds the text in between instead. And plenty of people I know use this format to signify actions or sounds...)
> - And if there is one principle I want my text formatting to follow, then it is absolute unambiguity. I don't want to discover that my post has ended up looking weird due to my punctuation habits being interpreted as formatting or the interpretation process misfiring (both of which have already happened in the couple of posts I've made since the relaunch). Markdown has all the disadvantages of a WYSIWYG text editing (such as random parts of text deciding they need to be something else than intended as soon as you do anything a bit less standard ... like press enter), minus the actual WYSIWYG. It is *not* a good system. (Also, give me my asterixes back. I don't want them parsed.)
> And how do I do text that is both bolded and italicized?
> **...And why on Earth does this this thing eat single line breaks!?** That - omitting single line breaks - is a crime against all writers everywhere, if I've ever seen one. I have long preferred the line break and tab paragraphing (as seen in books) to the double line break common in many net environments (as the double line break makes especially dialogue visually rather hard to follow for me, atop of simply looking ugly and adding ridiculous amount of scrollable space), and now we have been stripped of single line breaks entirely? Well, be I damned... At least until I get my single line breaks back. Missing the tab key's functionality was hard as is.
>
> ...I had one more thing to point out, but honestly I forgot what it was when I noticed it omitting single line breaks in preview.
>
> Oh yes, I remembered - the formatting tends to take its time to kick in (I am writing this for a rather powerful PC that typically loads script-heavy pages instantly, Firefox browser). I am aware it it a clientside solution, however the time delay tends to be too significant for comfort - and sometimes the formatting doesn't pop in at all unless I scroll the text out of view and back. (I literally stared at a short OoC note of mine for two minutes, then went to edit the post because I became convinced that if it hadn't popped up by then, the interpreter must have consumed the formatting altogether. The formatting was there all right ... and further observation confirmed that this is indeed how "lazy" the formatting pop-in is.
>
> In-thread online markers haven't been implemented (same as forum-view Subscribed-markers).
- Yeah, BBCode is coming back. I'm trying to do it right this time from the start rather than relegating BBCode to a hotfix shadow-world between real BBCode and what become known as QQCode. As QQCode became more and more entrenched over time, my attempts at patching it were breaking too many posts since everyone got used to its idiosyncrasies.
- I agree - the current state of formatting isn't that great. Markdown isn't a rich formatting syntax that people generally expect from forums. But I chose it for the v0.1 relaunch because:
1. It's bare-bones. Markdown-formatted text is still readable even if I dropped support for it overnight. It's something I can build on top of because it's mostly non-intrusive and doesn't really clash with anything.
2. I found a good editor + Markdown parser + preview button + javascript library package that let me cobble together something that worked so I could focus on rewriting the other components of the forum. For example, I use this: <http://www.codingdrama.com/bootstrap-markdown/>.
I recognize that maybe no formatting (rather, just line-break formatting) might have been better for the relaunch though. :(
I look forward to extending the editor with BBCode and other features that assist post organization. Someone mentioned <https://www.iwakuroleplay.com/> recently as a forum with some cool formatting features like tabs that people seem to like. I like that!
I also want to retro-patch posts to honor line-breaks which should be doable without breaking anything (well, just lines).
- Regarding client-side Markdown rendering, it's not pretty. It may help to know that the render is triggered by an "appear" event on each post that unfortunately doesn't trigger until you start scrolling. Often you land in a topic and just see a wall of text as the first post until you move the page.
I really want to move rendering back onto the server, but the naive solution (rendering posts on the fly when the server is generating the response) just wasn't performant enough for cases when you're looking at large posts. Since performance was my primary goal of the rewrite, I decided to offload the solution to the client until I can give it some thought and engineer a real solution. I don't really have the stomach for quick fixes anymore!
Anyways, you're right on. Post formatting is a sorry situation at the moment. I'm trying to dedicate most of my time this first week of the relaunch to things like system errors.
I've also started working on a real notification system. But perhaps post formatting would've been a better goal!