I still don't understand why people still use ~~Microsoft Word~~Copilot document writer , I think they have gotten into some weird mindset that their documents require all this weird unnecessary formatting to look "official"
Show HN: A WYSIWYG word processor in Python
11–20 of 41 posts
Re: Show HN: A WYSIWYG word processor in Python
#12Looks like a nice project. Looks like you missed a file, though. ModuleNotFoundError: No module named 'miniword.core.utils' I don't see it in my local clone of your repo, nor the repo iteslf.
My apologies. I added the missing file.
I'll give it a shot on my own Ubuntu laptop.
Re: Show HN: A WYSIWYG word processor in Python
#13I thought the data structure part is solved: https://en.wikipedia.org/wiki/Rope_(data_structure)
Re: Show HN: A WYSIWYG word processor in Python
#14at this point, a WYSIWYG just seems like a huge step backwards from just using markdown. I love having access to my files in a standard text format this is super easy to parse, and not being locked into whatever weird format that WYSIWYG decides to store it in. I still don't understand why people still use ~~Microsoft Word~~Copilot document writer , I think they have gotten into some weird mindset that their document…
Also wysiwyg doesn't mean it can't be back and forwards compatible with markdown, it might just mean that it's a markdown editor gui with a preview.
Re: Show HN: A WYSIWYG word processor in Python
#15Re: Show HN: A WYSIWYG word processor in Python
#16Curious about the choice of toolkit: what led you to wxPython?
Re: Show HN: A WYSIWYG word processor in Python
#17at this point, a WYSIWYG just seems like a huge step backwards from just using markdown. I love having access to my files in a standard text format this is super easy to parse, and not being locked into whatever weird format that WYSIWYG decides to store it in. I still don't understand why people still use ~~Microsoft Word~~Copilot document writer , I think they have gotten into some weird mindset that their document…
Re: Show HN: A WYSIWYG word processor in Python
#18Re: Show HN: A WYSIWYG word processor in Python
#19at this point, a WYSIWYG just seems like a huge step backwards from just using markdown. I love having access to my files in a standard text format this is super easy to parse, and not being locked into whatever weird format that WYSIWYG decides to store it in. I still don't understand why people still use ~~Microsoft Word~~Copilot document writer , I think they have gotten into some weird mindset that their document…
Markdown without formatting isn't usually the nicest to read imo. I actually appreciate a well laid out and formatted document myself. Also wysiwyg doesn't mean it can't be back and forwards compatible with markdown, it might just mean that it's a markdown editor gui with a preview.
Re: Show HN: A WYSIWYG word processor in Python
#20Earlier quoted context omitted.
Markdown without formatting isn't usually the nicest to read imo. I actually appreciate a well laid out and formatted document myself. Also wysiwyg doesn't mean it can't be back and forwards compatible with markdown, it might just mean that it's a markdown editor gui with a preview.
It’s also not nice to write longer text in monospace. Or to have long URLs interrupt the text just because you want a hyperlink on some word. Or having to lay out tables by hand like ASCII art. Seeing *this* isn’t the same as seeing this . And you need custom editor software anyway to have affordances like TOC navigation.
This annoyed me until I realized pandoc supports separating [the link text] from the link location.
[the link text]:
"`title` parameter of the tag, if converted to HTML"