Setting up Markdown Pages
A key reason for the LLMS.TXT standard is to remove unnecesary markup and content from the website, so that it does not consume huge amounts of tokens in the LLM's context window.
To this end, we want to identify key content on our pages.
Future
These customization features are not yet in production.
Currently, Hyperflow LLMS will convert the HTML page exactly to markdown with no special modifications, inclusions, exclusions, or controls.
Attributes
Body
hf-llms-mode = ( page mode )
Place this attribute on the <body>
element, the topmost element in the designer.
Specify one of these page processing modes;
all
( default ), Parse the entire page into markdowninclude
- will only include content on the page which is marked for inclusion ( see below ).exclude
- will include all content on the page except those sections which are specifically marked for exclusion.
hf-llms = ( element mode )
Place on any element in the page. That element and it contents will be handled according to the page mode and element mode.
hf-llms = include
hf-llms = exclude
hf-llms = optional
hf-llms-frontmatter = ( frontmatter mode )
Place on the body element.
include
( default ) includes Frontmatterexclude
does not generate Frontmatter
Future
Custom to generate cvustom frontmatter from an Embed?
all
Ignored
Ignored
include
Excludes this element and its children.
Ignored
exclude
Ignored
Includes this element and its children.
Technical Notes
Frontmatter
Hyperflow LLMS includes Frontmatter on each of the auto-generated Markdown Pages
Last updated