Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Comments on Drag-and-drop webpage layout automation software which can save output in one HTML file

Post

Drag-and-drop webpage layout automation software which can save output in one HTML file

+1
−3

I seek a FOSS content management system agnostic page builder for webpage layout automation with drag-and-drop GUI.

A program that would let me create responsive HTML webpages which can also be saved with all data in one page so that the HTML, JavaScript (if there is any) and CSS (if there is any) would all be stored in one large HTML file.

  • Pretty much like creating a rich text document and then exporting it into a .pdf --- but here to .html
  • After creating a webpage, one could copy its source code and paste in the production content management system (such as MediaWiki), if working in raw HTML mode

The program I seek can either be a web application (such as Elementor/Gutenberg) or it can be a native application executable on Windows 10.

I have mentioned Elementor, which is common in WordPress and Gutenberg, which is common in Drupal because they are pretty much what I seek, but as far as I know (and I might be wrong) one cannot export HTML webpages created with them in just one webpage.


Please share your recommendation.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

HTML doesn't work that way (2 comments)
HTML doesn't work that way
manassehkatz‭ wrote about 2 years ago

There is a fundamental problem with the question, which is that HTML simply doesn't work that way, with very limited exceptions. Part of the current speed and power of the web is that HTML, CSS and Javascript are mostly separate files. In particular, CSS and Javascript are loaded separately, often from special servers (CDN = Content Delivery Network) so that files can be cached and/or many of the files loaded from someplace closer than the actual main web server. It is generally considered bad form to deliberately combine everything in one giant file, though it is technically possible to do so. As a result, most (if not all) modern page building software will, by design, create numerous separate files. The one exception is email. For historical and practical reasons, HTML email generally has to be a single file. Which means CSS embedded. In addition, many email systems (for very good reasons) will not process Javascript at all. But for regular sites - separate files.

deleted user wrote about 2 years ago · edited about 2 years ago

Hello manassehkatz‭

I disagree with:

HTML doesn't work that way

There is a fundamental problem with the question

My case is one of the exceptions you talk about ...

Have you ever tried to develop in MediaWiki? If so you would know how easy such a tool would make layouting unique (non article) webpages there.

Edit: And if may I add, "for historical and practical reasons" :)