I just did the same thing (downloaded the attachment and viewed in Firefox on Linux) and either removing the second <p> (which Saq identfied as the culprit) or putting a blank line between it and the subsequent <br> seemed to solve the inline vs. block rendering of the tiddler:
<p> <br> ... ``` from django.urls import include, path ``` It was not a space after the first ``` like I suspected but that has the same effect of confusing the monospace markup. Alternatively you can roll with the inline rendering tendencies and use two less backticks: <p> <br> ... ``from django.urls import include, path `` /Mike On Sunday, December 20, 2020 at 5:20:41 PM UTC-4 [email protected] wrote: > I appreciate the thought! > > However you will find browser rendering engines ignore errors like these > no matter where they appear.That has been my experience writing pages, but > I checked to make sure I wasn't blowing smoke. I downloaded the file > attached for Jeremy, then removed the unterminated <p> tag without it > having any effect on the monospace block issue. You can even have a start > and closing tag that still doesn't display if the tags fail to terminate in > the same order they were defined. > > I can't swear IE might be effected, but it won't keep me up at night. > > On Sat, Dec 19, 2020 at 6:28 PM Saq Imtiaz <[email protected]> wrote: > >> I think the culprit is an unterminated <p> tag on line 7. >> >> On Saturday, December 19, 2020 at 9:17:46 PM UTC+1 [email protected] >> wrote: >> >>> @Mohamed Amin >>> >>> That works as well, but as in all my previous tiddlers as tw5 wikitext, >>> I was highlighting the blocks text and using the button in the editor to >>> mark it as monotext. It was using ```block``` without problems. Since the >>> result was showing a single backtick as part of the block and all the text >>> below it, I had played with it and discovered `` would work. >>> >>> When an editor starts displaying different formatting behavior using the >>> defaults and no changes, that gets me nervous. Imagine if that occurred to >>> you while writing up a peer review with it's strict formatting. It would be >>> disturbing. It's like creating a HTML page displayed differently from >>> previous HTML pages using the same browser. >>> >>> It's not like scouring code for hours, spotting nothing, have a peer >>> review it to discover a variable, function or class had a capitol letter >>> instead of lower case. That has happened often enough to me it's >>> embarrassing :-) >>> >>> On Saturday, December 19, 2020 at 2:47:27 PM UTC-5 Mohamed Amin wrote: >>> >>>> Try to use only 2 backtick instead of 3 around your special text >>>> >>>> On Sat, 19 Dec 2020, 21:34 Jeremy Ruston, <[email protected]> wrote: >>>> >>>>> Hi Douglas could you kindly share the entire text? Or an expurgated >>>>> version if necessary. As you say, it looks like the block mode formatting >>>>> has gone awry but I need to see the whole thing to see what's going on. >>>>> >>>>> Many thanks, >>>>> >>>>> Jeremy >>>>> >>>>> -- >>>>> Jeremy Ruston >>>>> [email protected] >>>>> https://jermolene.com >>>>> >>>>> On 19 Dec 2020, at 16:53, Douglas Glenn <[email protected]> wrote: >>>>> >>>>> The monospace functionality has worked as expected in previous >>>>> tiddlers. This particular tiddler is an exception. I have cut the text >>>>> and >>>>> copied it to Atom, looked for any hidden characters. Didn't find any so I >>>>> copied the text and used the insert as plain text option (in KDE) and the >>>>> the issue still exists with the monotext block. >>>>> >>>>> <djangoMarkup.jpg> >>>>> >>>>> Any ideas what may be causing the issue? >>>>> >>>>> Suggestions? >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "TiddlyWiki" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to [email protected]. >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/tiddlywiki/5eafcec9-aaa3-489a-b95e-0a97e717e003n%40googlegroups.com >>>>> >>>>> <https://groups.google.com/d/msgid/tiddlywiki/5eafcec9-aaa3-489a-b95e-0a97e717e003n%40googlegroups.com?utm_medium=email&utm_source=footer> >>>>> . >>>>> <djangoMarkup.jpg> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "TiddlyWiki" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to [email protected]. >>>>> >>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/tiddlywiki/55CBEA40-89B4-4858-B58C-1676E3F048C3%40gmail.com >>>>> >>>>> <https://groups.google.com/d/msgid/tiddlywiki/55CBEA40-89B4-4858-B58C-1676E3F048C3%40gmail.com?utm_medium=email&utm_source=footer> >>>>> . >>>>> >>>> -- >> > You received this message because you are subscribed to a topic in the >> Google Groups "TiddlyWiki" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/tiddlywiki/ysm-M_teeUQ/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/tiddlywiki/51c7f6d6-577b-44cf-ba07-9dc299053b81n%40googlegroups.com >> >> <https://groups.google.com/d/msgid/tiddlywiki/51c7f6d6-577b-44cf-ba07-9dc299053b81n%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > > > -- > Regards, > Doug > > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c54fb4b9-c700-4b2a-a8ad-1158a02c1ef3n%40googlegroups.com.

