AI outline macro - info

You are referring to AI outline specific macros.

The usage is described here:

The explanation of each macro is detailed here as well:

All other macros like %keyword% %language% are global tags that can be used anywhere.

%previous_output% is a special tag that just prints out the last thing the AI model returned to SCM.

Let me know if anything needs further clarification.

Personally I don’t like the h2_no_children naming convention, it is a bit confusing. I will think about another way to structure it…

Maybe?..

<ai_outline_prompts>
  
  <prompt_h2>
    <h2>%h2%</h2>
    [write a short introductory paragraph about %h2% in language %language%. 
    Use html <p></p> tags. Don't use html attributes. Start with a paragraph. 
    The topic of the article is %keyword%.]
  </prompt_h2>

  <prompt_h3>
      <h3>%h3%</h3>
      [write an answer about %h2%, %h3% in language %language%. 
      Use html <p></p> tags. Don't use html attributes. Start with a paragraph.
      {Insert a html <ul><li> bullet list or a <ol><li> numbered list||||}. 
      The topic of the article is %keyword%.]
  </prompt_h3>

 <prompt_h2_no_h3>
    <h2>%h2%</h2>
    [write an answer about %h2% in language %language%. 
    Use html <p></p> tags. Don't use html attributes. Start with a paragraph.
    {Insert a html <ul><li> bullet list or a <ol><li> numbered list||||}. 
    The topic of the article is %keyword%.]
  </prompt_h2_no_h3>
    
</ai_outline_prompts>