← Back to context

Comment by Osyris

4 days ago

> but as OpenAI pointed out last week

What are you referring to here?

https://cdn.openai.com/API/docs/gpt-5-for-coding-cheatsheet....

From OpeAI's last week document for coding with gpt5.

> #3. Use XML-like syntax to help structure instructions

  • I don't know if GPT-5 is an exception and is overcooked on XML specifically, but in general Markdown and XML seem to work about equally well for LLM inputs, the important part is just that they like hierarchical structured formats. The example on that page could probably be replaced with:

      ## Code Editing Rules
    
      ### Guiding Principles
    
      - Every component should be modular and reusable
      ...
    
      ### Frontend Stack Defaults
    
      - Styling: TailwindCSS
    

    Without any meaningful change in effectiveness.