Can WYSIWYG Die? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html) +--- Forum: Board (https://python-forum.io/forum-26.html) +--- Thread: Can WYSIWYG Die? (/thread-1618.html) |
RE: Can WYSIWYG Die? - metulburr - May-24-2017 OMG. This might be stupidly simple. Can someone else confirm this? The only way i can ensure to get formatted text is from PyCharm. Otherwise i had trouble finding it to do the rich-text.
If others get this same we can just switch be default to source mode. Or you can copy this... @decorator(param=1) def f(x): """ Syntax Highlighting Demo @param x Parameter""" s = ("Test", 2+3, {'a': 'b'}, x) # Comment print s[0].lower() class Foo: def __init__(self): RE: Can WYSIWYG Die? - Larz60+ - May-24-2017 Test @decorator(param=1) def f(x): """ Syntax Highlighting Demo @param x Parameter""" s = ("Test", 2+3, {'a': 'b'}, x) # Comment print s[0].lower() class Foo: def __init__(self): seems to have worked RE: Can WYSIWYG Die? - metulburr - May-24-2017 ok so i set all current users to source mode however the sql command to set source mode by default for new users didnt work. Ill have to figure it out RE: Can WYSIWYG Die? - metulburr - May-25-2017 So i had a lot of trouble finding a route to set everyone to source mode. sql commands wouldnt work, templates setting sourecmode to true didnt work, etc. There is only one way i could figure out how to make sure people use source mode and that is to enable sourcemode when someones enters the editor. However that bypasses their personal option meaning no one could ever use WYSIWYG. Not that care because i hated it, but it would restrict people to force in one direction. I could leave it as is and if someone from mybb team ever respond i could figure out a way to make it by default? But if we all hate WYSIWYG editor we could just leave it? Ill await to hear what people say before changing anymore. Im assuming the WYSIWYG editor was the problem for removing whitespace from the OP of this thread as well as that weird issue where it would remove 1 space from indentations? Also the whole BBCode help do would have to be rewritten as WYSIWYG wouldnt exist anymore. @decorator(param=1) def f(x): """ Syntax Highlighting Demo @param x Parameter""" s = ("Test", 2+3, {'a': 'b'}, x) # Comment print s[0].lower() class Foo: def __init__(self): EDIT: The code when switched to preview still shows the code not indented...but when posting it is indented...so yeah there always seems to be something lol EDIT2: Oh wait. i guess that is only if you dont use python/code tags it doesnt indent in preview. Otherwise it does the first time. RE: Can WYSIWYG Die? - micseydel - May-25-2017 Options are good, but I'd err toward fu- Oh this isn't isn't the admin section. I'd err toward screw it. It's not worth the trouble. RE: Can WYSIWYG Die? - metulburr - May-25-2017 yeah i might just follow that advice. I google searched and read thoroughly everything on the first google page, each thread listed. When i posted on their forums, i said i tried X, Y, Z listed out from this google search. My only response was a link to let me google this for you with the same google search that i got X, Y, and Z from Sometimes you get a lot of help, and sometimes you get none. |