Sygnal Hyperflow
Micro-Consulting
  • 📗Overview
    • Hyperflow v2.0
    • What's New?
  • 📗CORE FEATURES
    • Overview
    • SEO Enhancements
    • Hyperflow 2 API
    • Logging
  • 📗HYPERFLOW APPS
    • Hyperflow Monitor
      • API
      • Alert Setup
    • Hyperflow Locale-Specific Domains
    • Hyperflow LLMS
      • Setting up LLMS.TXT
      • Setting up Markdown Pages
      • Hyperflow LLMS API
      • Future
    • Hyperflow CMS Preview
    • Hyperflow Files
    • Hyperspeed
  • 📗INSTALLATION
    • Hyperflow Setup
    • Cloudflare DNS Setup
      • GoDaddy
    • Hyperflow Installation
    • Micro-service RPC Interface
    • Monitoring & Maintenance Setup
  • 📗HYPERSPEED
    • About Hyperspeed
    • Hyperspeed Releases
    • Hyperspeed Caching Features
      • Purge Cache on Site Publish
    • Hyperspeed Security Features
    • Hyperspeed SEO Features
    • Hyperspeed Advanced & Custom Features
    • Hyperspeed Monitoring & Maintenance
    • Additional Notes
      • Hyperspeed API
      • Monitoring
      • Information
      • JS
      • CSS
      • Hyperflow Purge Cache
        • Purge Triggers
        • Purge HTML Only
        • Quickstart
      • Content Coverage
      • Special File Handling
      • Caching
      • Image Handler
      • Dev Setup
      • Hyperflow Inline SVGs
      • Hyperflow Image Optimization
    • Hyperflow Editor
    • Future
    • Webflow Notes
    • Troubleshooting
  • 📗ADVANCED HYPERSPEED
    • Kingside Castle (O-O)
    • Queenside Castle (O-O-O)
Powered by GitBook
On this page
  • Future
  • Attributes
  • hf-llms-mode = ( page mode )
  • hf-llms = ( element mode )
  • hf-llms-frontmatter = ( frontmatter mode )
  • Technical Notes
  • Frontmatter
  1. HYPERFLOW APPS
  2. Hyperflow LLMS

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 markdown

  • include - 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.

partial is highly recommended.

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 Frontmatter

  • exclude does not generate Frontmatter

Future

Custom to generate cvustom frontmatter from an Embed?

hf-llms-mode
hf-llms = exclude
hf-llms = include

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

---
Page title
Date published
Public URL
---

PreviousSetting up LLMS.TXTNextHyperflow LLMS API

Last updated 25 days ago

📗