5/9/2026 at 6:31:15 AM
My concern here is that by gravitating to HTML you lose the ability for a human (you!) to easily co-author the document with the LLM. If it’s just an explainer for your consumption, that’s not a concern - but if it’s a spec sheet for something more complex, I deeply value being able to dive in and edit what is produced for me. With a HTML doc it is much harder to do that than with MD.Now of course you could just reprompt your LLM to change the HTML - but when I already have a clear idea of what I want to say in my head, that’s just another roadblock in the way.
If this pattern becomes more common I suspect human/LLM co-creation will further dwindle in favour of just delegating voice, tone and content choice to the LLM. I was surprised not to see this concern in the blog post’s FAQ.
by tmhrtly
5/9/2026 at 2:40:16 PM
Markdown supports inline HTML for interactive elements, I think an interesting potential alternative would be an md doc with a known HTML template and simple build (e.g. single line pandoc command).by jedimastert
5/9/2026 at 3:27:24 PM
This is the way - lightweight build process - host it on your private tailnet to consume the document on whichever device you so choose - tablet, phone - also makes it easier to share with co-colaborstors etc. in a more secure way.by ray_v
5/9/2026 at 3:19:39 PM
yah this should be the way. simpler text in markdown and rich visuals and complex tables in html. coding agents should handle this locally instead of wasting tokens as well.by sreekanth67
5/10/2026 at 10:44:44 AM
that’s exactly the core value proposition of the tool I have been working on : https://github.com/livetemplate/tinkerdownby realrocker
5/9/2026 at 12:11:52 PM
I actually think there is a second level to this. Yes HTML will get you most anywhere, but I found that letting the LLM define its own language is also unreasonably effective.Currently working on a dumb little mobile game with isometric view and sound:
- told codex to write a tool that lets its place blocks in a prepared three.js document and have chromium dev tools take a screenshot. It made up a little JSON structure that defines blocks / colors and some other effects and it outputs 2.5d tilesets.
- told it to create a uv python script that would let it define sounds and music, and it made a yaml format that lets it create noises.
We completely shot past the svg pelican test. Codex has created both perfectly adequate prototype art of soldiers/knights/priests as well as a prototype soundtrack.
by athrowaway3z
5/10/2026 at 3:51:34 AM
LLMs do fantastic when you do the architecting for them. Don't let them make system decisions, and you'll have a great time.by BobbyJo
5/9/2026 at 3:52:10 PM
This sounds very intriguing have you written more about it anywhere we can read?by le-mark
5/9/2026 at 6:54:39 PM
They can map things like this. They are amazing translation layers. As long as it is a shape of problem or data they are trained on they can translate. The DSL they made up is shaped like some other data format they know for that latent space. It seems amazing, and it is, but it is also a core feature of how LLMs work. The problem is it works until it doesn’t. Fuzzy can only get you so far before it decoheres without rigor.by bitexploder
5/9/2026 at 2:38:51 PM
[flagged]by fredwilliams
5/9/2026 at 3:03:07 PM
Typical HN condescending bitterness at it again. Thank you for this very constructive feedback.by kschiffer
5/9/2026 at 7:04:29 AM
We have been authoring HTML by hand for decades with ease. Text editors are very good at it, and many have commands to auto-wrap, auto-close etc. Reading and writing is simple.by Jakob
5/9/2026 at 2:41:43 PM
I can code up a complex HTML table by hand faster than I create a basic MD table, but other than that, I find it difficult to achieve a good writing flow with pure HTML, even with all the automation. I author a lot of API docs, READMEs, and how-to guides, and find MD to provide the perfect mix of decently powerful markup and flexibility with supporting raw HTML when needed. The only constraint is that some markup renderers don’t support or severely restrict HTML passthrough (I ran into this with GitHub recently).by temporallobe
5/9/2026 at 2:59:10 PM
I did this on an airplane once because I didn't have Internet and I've never felt more like a real hacker sinceby mohamedkoubaa
5/9/2026 at 9:16:19 AM
Templated though, not manually writing it out for every blog post say. I think GP means it just has more friction as a writing format than markdown for example.by OJFord
5/9/2026 at 11:28:32 AM
No, literally manually typing out HTML tags and everything. Many of us did it so much things like Emmet (https://emmet.io/) were invented and used so we could hammer out full HTML documents even faster.Even after React became popular, people are still manually typing out HTML elements, although they call it "JSX" instead, but in reality it's just HTML.
My first blog on the internet literally was a bunch of .html files, where my post "template" was the first post copy-pasted when you wanted to make a new post. Changing the design involved changing the same thing across all files.
by embedding-shape
5/10/2026 at 12:26:12 AM
> PS: Really cool static site generators that shoot for simplicity don't require you to create extra template files written in a new, made-up template language. When you want to create a new post, you give it (a) the static files from your existing site and (b) the markdown for your new post. The "templating" engine inspects your existing posts (incl. e.g. class attributes) and then copies the same document structure into a new file, except with the right stuff (timestamp, title and heading, post content...) substituted in to the places where it's supposed to go.by cxr
5/9/2026 at 1:20:51 PM
Basic HTML really isn’t a big step up from Markdown though, and no one was complaining about that. In some instances it’s simpler even. I often forget the exact syntax for a table in Markdown, by comparison <table>, <tr> and <td> are easy to remember. All of the major parts of Markdown are pretty easy, <h1>, <strong>, etc etc. It was written with human authorship in mind.Typing out <p> for every paragraph is annoying, for sure. But a converter that switches out \r\n\r\n for a new paragraph would be a reasonable middle ground IMO.
by afavour
5/9/2026 at 8:47:17 PM
When using AI, I often find myself preferring either plain text (no markup whatsoever; just manual / text editor formatting of text blocks) or simple html to markdown, depending on the situation. To the point that I rarely see any point in using markdown for anything. If it is meant for to be a simple text mainly for human consumption, the markups often don't add much clarity (and often bring in an amateurish look, as if the author didn't know how to emphasize using English constructs), in which case plain text feels more pprofessional. If it is meant to be [lightly] processed before being presented to a human, or if it is meant to be processed by a tool / bot / LLM, then HTML is infinitely more straightforward.Also I often call out my colleagues if they try to put a table in markdown. Markdown is not built for tabular data in most professional settings (i.e., one or two table cell could easily take a whole line of markdown to express). A basic <table><tr><td style="background: red">some number</td></tr></table> goes a long way.
by honr
5/9/2026 at 1:22:19 PM
>Templated though, not manually writing it out for every blog post say.Both. We manually run HTML just fine back in the day.
by coldtea
5/10/2026 at 3:56:45 AM
A lot of editors will auto add the ending tag, and auto-update the ending tag if you rewrite the start tag. I think it's gotten pretty darn easy to use HTML er I mean XML ;)by giancarlostoro
5/9/2026 at 12:24:37 PM
[flagged]by F7F7F7
5/9/2026 at 12:37:05 PM
Well if you're going to be like that you may as well say something about assembly, butterflies, and what the hell's a web log anyway, spiders and beavers have nothing to do with one another.'we have been authoring' is present perfect continuous. Going forwards, and for at least the last two 'decades', HTML blog posts can use CMSs.
by OJFord
5/9/2026 at 12:45:56 PM
That incredibly condescending phrase should be banned from HN.by abanana
5/9/2026 at 2:27:02 PM
It doesn't need to be explicitly imo, it falls short of many of the commenting guidelines.by OJFord
5/9/2026 at 1:22:59 PM
It fits perfectly.by coldtea
5/9/2026 at 8:30:58 AM
You have been authoring HTML by hand for decades. Not every SWE is a FE dev.by laurels-marts
5/9/2026 at 11:23:27 AM
People have been authoring html by hand for a long time before the specialization to Frontend dev even existed...by ffsm8
5/9/2026 at 12:26:09 PM
I learned HTML 20+ years ago in high school.I did not go to a front end high school.
by F7F7F7
5/9/2026 at 6:58:09 PM
Your high school taught you a front-end markup format. I'm sure it seemed like a good idea to someone at the time.by antonvs
5/9/2026 at 12:48:06 PM
Simple HTML is easy to do. If you just want a document with information and it does not need lots of branding and great aesthetics. That is what you are looking at as an alternative to Markdown.by graemep
5/9/2026 at 8:37:43 AM
Java engineers write lots of HTML in java docs:)by AlecBG
5/9/2026 at 11:48:17 AM
Yes so far, but it‘s switching heavily towards Markdown.by Tomte
5/9/2026 at 8:48:34 AM
Most front end devs can’t get HTML right either.by austin-cheney
5/9/2026 at 2:51:22 PM
This is shockingly true. Most newer FE devs I have encountered are mostly trained on the popular frameworks and lack understanding of the underlying fundamentals, e.g., they only know TypeScript + SCSS and some smattering of HTML but more often know whatever templating engine and MVC(ish) backend the framework uses. It’s really helpful to understand what the browser is actually doing and all the “stuff” the framework spits out on the other end.by temporallobe
5/9/2026 at 11:30:07 AM
Modern JS/TS devs probably not, but I wouldn't even call someone a "frontend dev" if you don't know HTML, kind of being a infrastructure engineer and not knowing how any OSes work.by embedding-shape
5/9/2026 at 2:38:41 PM
It’s not just knowing HTML as in writing a bunch div tags and patting yourself on the back. If you aren’t able to achieve at least 80% WCAG AA compliance you can’t write HTML.Most frontend devs have no idea what any of that means. But then it seems everyone who can write 3 lines of code professionally refers to themselves as an ”engineer”.
by austin-cheney
5/9/2026 at 3:14:35 PM
Yes, it's literally about being able to use HTML effectively and knowing what you are doing, then you know HTML. I'm not sure why you bring up some arbitrary accessibility guidelines, that has no bearing if someone is using HTML correctly and neither would I gatekeep the "frontend" label on some arbitrary "must pass this particular standard", never heard something so outlandish when it comes to who could call themselves frontend developer or not.by embedding-shape
5/9/2026 at 6:51:38 PM
I suspect this unintentionally satisfies my conclusion.by austin-cheney
5/9/2026 at 6:57:45 PM
Only if you're willfully ignorant of the wider discussion.by embedding-shape
5/10/2026 at 12:23:07 AM
Obviously. Me having technical knowledge you appear to not have on the discussion at hand makes me ignorant of the discussion at hand.by austin-cheney
5/10/2026 at 12:58:43 AM
HTML was invented for physicists to be able to write papers. It's not something that's beyond anyone without frontend dev experience.CSS, on the other hand...
by jameshart
5/9/2026 at 1:21:16 PM
You don't have to be a FE dev (which is largely a junior/mid-level position anno 2026) to write HTML.I'm not and I've used it for years. With Markdown being a thing that has been less common, sure, but that's more of a zeitgeist thing.
by radicalbyte
5/9/2026 at 5:04:01 PM
Why not just use XML at this point? It has "stricter typing" and can make the spec better.by phplovesong
5/9/2026 at 8:57:49 AM
>We have been authoring HTML by hand for decades with easeNo, we've been generating it with templates or authoring templates.
Authoring HTML by hand is a very early 2000s thing to do.
by pydry
5/9/2026 at 10:16:09 AM
After you a FE webdev that doesn't regularly author HTML by hand?by pbhjpbhj
5/9/2026 at 12:28:17 PM
Can’t answer the person who responded to you but:Yesterday. Astro components.
3 million people will have seen it as I type this. More next week.
by F7F7F7
5/9/2026 at 12:23:49 PM
Hand on heart. When was the last time you built a serious production system for a real business that was 100% built from HTML without using any build step? Just editing the footer and header in every file when it updates (or using iframes)by victorbjorklund
5/10/2026 at 9:57:45 AM
Maybe not in your corner of the internet, but businesses used server side includes (SSI) for that, not iframes.You add “include” tags to your HTML file and your web server like nginx or varnish would replace it with the fragment at runtime.
<!--#include virtual="../footer.html" -->
I saw this was quite popular for big publishing houses with millions of articles still relatively recently 10 years ago. They would only write the HTML body of a new article and the other fragments would be included by the web server.Very cheap, stable, and very big changes across the whole website could be done instantly since cache invalidation is trivial (the web server knows all modified dates of all fragments).
Also, no additional CDN or caching needed. Later, with CDNs there was even a variant where these fragments were hosted at the edge (ESI).
by Jakob
5/10/2026 at 3:11:11 PM
10 years ago. I bet you can’t name a single production site writing HTML files without any build tools at all. Just raw dogging using notepad directly on the server.by victorbjorklund
5/9/2026 at 1:24:30 PM
LLMs aside, when was the last time you wrote React/JSX and didn't write a subset of HTML by hand in them?by coldtea
5/10/2026 at 8:56:31 AM
That is the point. No one writes HTML without any abstractions anymore. You use a framework or a build tool. Because just editing pure html files is a pain in the ass. Probably haven’t done that since 2010.by victorbjorklund
5/9/2026 at 7:13:23 AM
I suppose that only applies if you constrain yourself to a raw teletypewriter emulator… in any proper coding environment, editing HTML should be absolutely simple - even an embedded WYSIWYG editor would be an option if rich model output is a way we head into.by 9dev
5/9/2026 at 8:04:19 AM
A counter argument would be that all programming languages of the last decades have been plain text based. No other more structured format has ever gained traction even though modern editors could be argued to be able to support that easily. Turns out, it doesn't actually work that way.by teiferer
5/9/2026 at 11:56:26 AM
HTML is plain text based at the same level as any programming language I can think of.by IanCal
5/9/2026 at 9:08:13 AM
But we’re not even dealing with a programming language in any classical sense here. Interacting with an LLM coding system is a multi-mode communication system with on-demand, purpose-generated ephemeral UI. That doesn’t fit any of the established categories, so I think carrying over constraints from them doesn’t make sense either.by 9dev
5/9/2026 at 1:25:58 PM
>with on-demand, purpose-generated ephemeral UINope, it's a fixed, coded and shipped UI: the agent TUI.
by coldtea
5/9/2026 at 3:17:21 PM
Even Claude Code can whip up interactive, tabbed, multiple choice questions for example. If you use the superpowers plugin, it'll sometimes spawn a small web server demoing UI concepts or previewing more complex choices using LLM-generated HTML. Claude Code on the web will do even more involved React apps on the fly next to the chat. There's no technical reasons this couldn't get more complex, or vertically integrated with code editors.I'd definitely call that on-demand, purpose-generated ephemeral UI.
by 9dev
5/9/2026 at 9:06:32 AM
Most people edit documents in Microsoft word, though, so it didn’t seem too far fetched that LLM content would be edited similarly, especially as more and more non-programmers use it.by dkersten
5/9/2026 at 10:13:34 AM
MS Word uses HTML under the hood, right? (Or some SGML at least.)by pbhjpbhj
5/10/2026 at 9:28:30 AM
It was less a comment about the format and more a comment about the application used to do the editing.by dkersten
5/10/2026 at 1:52:02 AM
There's a visual editor for Windows Forms apps that is well thought of.by thaumasiotes
5/9/2026 at 11:27:43 AM
I’ve started using HTML for reports recently. But I always use a markdown file as an intermediate and tell the LLM to generate a fancier version of it with SVG for graphs/pictures based on tables in the markdown.by edoloughlin
5/9/2026 at 2:55:17 PM
One idea that could be useful for products like Browser Use and Stagehand is instead of using videos of the session, they can use HTML slideshows to show the step-by-step progress of the session. Single file HTMl can be downloaded and shared and annotated as well. I hope someone from those companies are here and will take this advice. I am not advocating for replacing the video sessions but also have the HTML Slideshow as another session artifact.by renticulous
5/9/2026 at 8:26:27 AM
Yes that’s the case. And as Anthropic staff, author has an incentive to promote workflows that require an agent to interact with text documents.by manmal
5/9/2026 at 8:28:38 AM
I've yet to see Anthropic promote any sort of token optimization strategy to its users - they always assume we all have infinite inference."No bread? Let them eat cake!"
by elkoan
5/9/2026 at 9:12:02 AM
Not sure how you use CC, but the last 6 months has felt like significant optimization efforts to me. Last year Claude would just read and edit files, now it's all kinds of basic tool gymnastics with grep/awk/sed/etc to narrowly slice and avoid token-heavy reads. Resuming sessions that aren't even that large get a scary prompt about using a significant portion of your token budget if you continue without compacting.To me it feels like a worse experience, and they probably feel it too, but it makes sense from an optimization perspective. I've probably learned some shell tricks, but also going blind from watching Claude try dozens of variations of some multi-line chained and piped wall of bash nightmare, instead of just reading a few files.
by chickensong
5/9/2026 at 9:42:53 AM
Valid points, but they address a totally different matter than the one I pointed out.by elkoan
5/9/2026 at 7:32:02 PM
They give you multiple models and knobs to control effort? What are you looking for?by chickensong
5/9/2026 at 10:18:15 AM
I completely agree but hadn’t found a way to put it to words. It could be the model too trained on optimized strategiesby Computer0
5/9/2026 at 1:46:53 PM
At the same time it has gotten WAY better at parsing giant documents due to this.by solenoid0937
5/9/2026 at 8:35:31 AM
Nah they do. They push Sonnet pretty hard rather than Opus for most tasks.Also: https://platform.claude.com/docs/en/agents-and-tools/tool-us...
by afro88
5/9/2026 at 8:38:07 AM
I've noticed that's changed over the past month or so. Claude-code used to happily pipe build commands straight into context, but recently it's been running them as background tasks that pipe to file, and it'll search and do partial reads on the output instead.It also gives tips on reducing context size when you run /context .
Presumably they are actually starting to feel the pinch on inference costs themselves with what still feels like a fairly generous max plan.
by eterm
5/9/2026 at 8:44:33 AM
And it seems to use head, tail etc. more than it used to, even when unnecessary, which, combined with the recent(?) tendency of more chaining and as you said, piping to temp files and the like, totally screwed up claude code’s auto approval system for me (by auto approval I mean the system to decide which commands can be run without permission prompt, based on the permissions.allow setting among other things, not to be confused with a specific new approval mode called “auto” that burns more tokens to decide whether the command is safe). I had to write my own auto approval system and plug it in as a hook.by oefrha
5/9/2026 at 12:29:37 PM
HTML is by far simpler than Markdown.by F7F7F7
5/9/2026 at 1:49:12 PM
By what measure? HTML as they're describing it here includes CSS and presumably Javascript. Markdown has only a handful of elements and they're all more human readable in their unrendered form. Show both to someone who has never seen either and it's obvious which they would describe as "simpler".by Zetaphor
5/10/2026 at 4:18:46 AM
Markdown covers only a very small subset of HTML. By definition you are wrong.by manmal
5/9/2026 at 7:03:31 AM
Is HTML really that much worse to edit than MD?by 4k0hz
5/9/2026 at 1:55:09 PM
Yes, I do think it is.HTML made by Claude will, by default, be "sleek, modern", with colorful tables, cards, maybe Tailwind for styling. And, of course it will, if you wanted a barebones HTML, you would just have asked for markdown!
So the LLM decided to present some content using 4 cards, and you now want to add new itens. You can't just add new lines of text: you need to copy the whole HTML of the cards. But the LLM used different colors for each card, so now you have the first cards with varying colors and the new cards all the same color as the last card. Now you have to think about colors... etc etc
by rubslopes
5/9/2026 at 8:06:09 AM
Markdown is essentially just syntactic sugar for HTML[0], so yes it was made to be easier to edit than HTML.by sheept
5/9/2026 at 11:57:18 AM
It’s a bit easier yeah but there’s not much in it.by IanCal
5/9/2026 at 7:15:16 AM
Let’s see… *No!*
I mean, <b>yes!</b>
It depends what we mean I guess, isn’t Markdown supposed to allow [hx]ml tags anyway if user need them? Then it’s more about asking the LLM to generate Markdown with this in consideration, and privilege rendering the output of reports in the preferred browser after relevant rendering.
by psychoslave
5/9/2026 at 9:59:42 AM
1. I believe many applications that use markdown allow html. Others don't due to security/rendering issues.2. One of the limiting factors of LLM is context. An html table takes up way more tokens than a markdown table. Especially if it's a WYSIWYG editor that has all kinds of css and <span> tags just for fun.
by abirch
5/9/2026 at 1:25:25 PM
> An html table takes up way more tokens than a markdown tableThat might be the case today but there’s no reason for it to always be true. They are different representations of the same thing, an LLM could (arguably should!) store an internal representation that uses fewer tokens.
by afavour
5/9/2026 at 2:55:40 PM
[dead]by voxleone
5/9/2026 at 11:48:28 AM
HTML is super human readable if you stick to a subset of it.It's arguable even more readable.
<b>bold</b> <i>italic</i> <u>underline</u>
I can never remember how many stars and ticks correspond to what in markdown.
by dheera
5/9/2026 at 1:56:07 PM
Oddly enoght those are now called the "bring attention to" element [1], the "idiomatic text" lement [2], and the "unarticulated annotation" element.1: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/...
2: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/...
3: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/...
by tdeck
5/9/2026 at 1:50:08 PM
Most editors format and highlight markdown syntax as bold, italic or strike through, but I have never seen the same thing for html. They only highlight the html-specific parts leaving the content unstyled.by abdusco
5/9/2026 at 5:17:47 PM
seems like it'd be fairly straightforward to get things setup where text blocks are double click to edit, have drag handles, delete buttons etc, and then you can also use surfingkeys to get vim style navigation.overall i'm seeing a potential here for more human authoring, as you can really multiply the surface of your inputs with deterministic widgets rather than just delegating.
by soledades
5/10/2026 at 2:25:22 PM
I can edit html. Also, I don't bother with html editing. If it's a doc that needs editing, I just tell Claude to format it for ease of editing and then I just go through and type whatever crap I want to say. Then I ask Claude to clean it up.BUT, I only do this as an easy way of referencing specific ideas and text in notes to instruct Claude. I say, "I have added notes. Read them and adjust the doc accordingly." Or, "Read the notes I added. Turn them into html."
It's an insanely productive pattern.
by tqwhite
5/9/2026 at 3:17:55 PM
HTML isn't difficult to read or edit by hand, non-technical people did it for years before the web became commoditized and generating everything with javascript became the standard. It's more awkward than Markdown, yes, but basically simple.by krapp
5/11/2026 at 1:49:01 PM
Well said. It is so much better for when the human can see what the LLM has changed and iterate on it with the LLM, making their own changes. Markdown is better for that.by wek
5/10/2026 at 7:08:05 AM
Now of course you could just reprompt your LLM to change the HTML - but when I already have a clear idea of what I want to say in my head, that’s just another roadblock in the way.It's usually faster though, so you get to spend more time on thinking.
by onion2k
5/9/2026 at 5:32:40 PM
I don't think human coauthoring documents with AI is viable, due to very different costs. It's like with combining hand-written assembler and compiler output. I think ideally there will be some delineation which parts of the document are human-produced and which are AI-produced.by js8
5/9/2026 at 7:25:00 PM
If it’s a collaborative doc, you could make a pretty quick WYSISWYG or markdown editor for inline editing.I’ve done something similar with Figma-like commenting and find myself pulling it into all kinds of personal projects.
by ar_turnbull
5/9/2026 at 4:38:42 PM
It's possible that use of `contenteditable` and ability to save the file could help but that has a lot of limitations/gotchas, so I'm inclined to agree.by rattray
5/9/2026 at 11:41:24 AM
It highlights the extremes the anthropic team adopts LLMs in their workflow.I think most of us live somewhere in the middle, using the right tool / output for the job.
by adam_patarino
5/9/2026 at 7:50:23 AM
Makes sense for actual devs. For non-devs who'd just edit docs via LLMs anyway (myself), I can't imagine it'd introduce much friction.by awllau
5/9/2026 at 7:18:32 AM
Yes, and you can always embed HTML in Markdown for <script>, <style>, <svg>, and other tags that cannot be coded in Markdown.by divbzero
5/10/2026 at 1:26:16 AM
I started using Thariq’s approach yesterday and it works very well. One thing I noticed is that I’m no longer wary of reading long and complex spec documents. Opus does a great job with web design and uses a combination of clean, modern styling and interactive elements that reduces my cognitive load and improves my ability to understand the details of what it is planning to build.by enraged_camel
5/9/2026 at 4:33:57 PM
Not sure what you mean. HTML is designed to be authored and edited by humansby singpolyma3
5/9/2026 at 2:58:04 PM
You could just do `<fixme>my two cents<fixme/>`by mohamedkoubaa
5/10/2026 at 3:22:31 AM
HTML is trivial to edit by hand in Notepad or nano.by burnte
5/9/2026 at 7:29:22 PM
Time was everyone took pride in writing HTML in Notepad.by emodendroket
5/9/2026 at 1:56:03 PM
Why is it a problem if co-authoring the document is a touch more difficult?The same could be said of any proprietary file format (which HTML is not!) Designers aren't concerned when they create inside a .psd or .ai file.
This feels very similar IMO.
by adamtaylor_13
5/9/2026 at 1:18:31 PM
Sorry but what? HTML's really simple, I've been using it for 30 years now. Pretty much everything you need to know to do something useful can be learned in an hour.I know that it's 2026 and we've spent the last 15 years hiring people into our field who don't understand the hacker mindset but I didn't think that I'd find them here. They would have been ran out pretty quickly.
by radicalbyte
5/9/2026 at 3:14:36 PM
Next up after HTML: someone rediscovers programming languages and comes up with the idea to use them to prompt agents.by trollbridge
5/9/2026 at 3:46:49 PM
Maybe with some kind of plugin for more deterministic output from those languages?by 90minuteAPI
5/10/2026 at 12:07:35 PM
Yeah. We could even have some kind of plugin or SKILLS.md file that helps convert from this kind of structured prompt into another even more deterministic, predictable output.by trollbridge
5/10/2026 at 9:01:16 AM
I have heard people say prompting via JSON is much more deterministic lolby sevenseacat
5/9/2026 at 10:41:32 AM
[flagged]by archpulse
5/9/2026 at 6:45:18 AM
[dead]by bigfudge
5/9/2026 at 2:57:56 PM
We should ask the agents to output TeX instead. /sOn a serious note some kind of rich Markdown would definitely help.
by odiroot