Okay so the first 2 responses sort of hint at part of the problem, using an external HTML editor, then having to copy all the output into whatever mechanism, that someone would use to incorporate that inta a sketch and post views the whichever webserver code you are using, and whatever it requires.
One is just plain text, that would have to be place in String / char variables, then posted via that mechanism's requirements.
[quote="mocallins, post:1, topic:1379177, full:true"]
Hello all, I'm new to the forum, and new to Arduino projects.
As the title suggests i've seen multiple discussions about some sort of editor to create web pages (with basic elements), that live on an Arduino.
Rather than having to construct all the text (for the page) manually.
CKEditor is an open-source javascript based editor that is free to implement for open-source communities.
Can probably be tweaked to generate code (in various formats) for Arduino.
Should be easy enough to host it on the Arduino.cc website.
I'm sure there are web editors out there (people) that would contribute, and make it a nice easy tool for use with projects.
@Rintin I didn't do any extensive research but i did see a package called PageBuilder, and another, don't remember right off, the name, but it looks like there are multiple.
And have the output tweaked , for that package. the you just copy and paste the code in your sketch.
And anybody who looked at this, this is 2025, can't we have great tools to help us all out, without having to resort to the clunking way arduino / cpp code limits us.
Like I said i'm new the the Arduino world, but i've already written some things to help replace variable names, with values in text strings. Sure looks a lot better than a bunch of clunky Serial.print(ln) statements with their variables inserted appropriatly.
I plan on posting it to the community at some point, just trying to wrap my head around the whole .h / .cpp files, t make it more easily usable.
I also implemented it with va_* , but i'm sreioisly considering rethinking that in favor of an array of struct, with name/value definitions which would make lookup, much easier and make it more understandable, for usage. Little bit of additional legwork, but i think the result is more robust.
Still thinking it out, and playing around with it.
Is there no preview of the post, before submiotted ?