this post was submitted on 12 May 2024
1 points (100.0% liked)

Free and Open Source Software

17746 readers
22 users here now

If it's free and open source and it's also software, it can be discussed here. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

Hello, i was looking for a wysiwyg html editors i could use for my personal website, perferrably just as a simple open source desktop program on linux (though anything else is fine). i DID find something called KompoZer but i was wondering if there's any other ones, thanks

top 2 comments
sorted by: hot top controversial new old
[โ€“] jarfil@beehaw.org 0 points 4 months ago (1 children)

Chromium, Firefox... if you open the dev tools, you can edit everything, with it showing in the browser in real-time (WYSIWYG).

Firefox Developer Edition has some extra tools and debugging modes, but some are redundant if you're using VS Code.

If you're looking for a Dreamweaver-like thing, where you could drop elements with minimum HTML writing... you may want to check Seamonkey Composer.

For a simple personal website though, I'd recommend using a markdown editor, then either export it through a template, or have a template interpreter on the site, like GitHub Pages.

[โ€“] mp3@lemmy.ca 0 points 4 months ago* (last edited 4 months ago)

You can even use Markdown file and convert it dynamically to HTML using javascript through Markdeep by just dropping

<!-- Markdeep: --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="markdeep.min.js"></script><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js?"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>

at the end of the markdown file. It makes it dead simple to update using a text editor later on and to host on a static website.