jekyll-llms-generator 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1ecfa381c475f48a225d4dce09749a61889301fe215e18001957dec8f550712
4
- data.tar.gz: 03774436373f3565bf0435a733b3cc6faaaa318ed209a8bc553990b1c9a6cfd8
3
+ metadata.gz: 61e7af91faf01c8a0511432b9a91cb7981314a6721dc9e0290eb65d9709fe141
4
+ data.tar.gz: 562bc7af8bc4fdec062271fafb8ebe9b15e0caa90752f467f5c013439f8f2e39
5
5
  SHA512:
6
- metadata.gz: d4ab4518dd4d44c26fca849984e755b10ab7e19d97cab3866ebb9af8873e951b62f2fe1bfd68dd8fde6fcb4218582d7da2961fc886133e1affa8631f88b3a363
7
- data.tar.gz: 53ddba5fd8e241338169001f0d0bad3356c948b43d308cae8a44fc90f3c9cbb36961248ef044b7ef840055ad6d0af6db9a9ff6950ceebd16c96d39784fe27ecb
6
+ metadata.gz: 597fd7a9fe2f2ef89770f8aa8dad5fbc6069e12478d914b4a6192c1b3f66af800285ee04bc5ab3bce031c7e83e3e9669783013721afe979bc0175201ea760bdd
7
+ data.tar.gz: dc583c5de51a5092d2c905b02a8a04552a9bdb9cd2b0b0646799c034225cbc306ec0c57fbd1742e27afea3ec05a54a0f46c1e2d25d0daba0024fe8dd32345fbc
data/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [0.1.0] - 2025-07-08
5
+ ## [0.2.0] - 2026-08-20
6
+
7
+ ### Changed
8
+ - `llms.txt`: descriptions now use first complete sentence instead of hard 200-character truncation — cleaner, more natural output for LLMs
9
+ - `llms-full.txt`: entries now use `### [Title](url)` headings, `> description` blockquotes, and `---` separators between articles, making article boundaries unambiguous for LLM parsers
10
+
11
+ ## [0.1.0] - 2026-08-20
6
12
 
7
13
  ### Added
8
14
  - Initial release
@@ -45,6 +45,12 @@ module Jekyll
45
45
  lines << intro.strip
46
46
  end
47
47
 
48
+ # Link to full version if enabled — lets crawlers discover llms-full.txt
49
+ if @config["full"]
50
+ lines << ""
51
+ lines << "[Full content version](#{site_base_url}/llms-full.txt)"
52
+ end
53
+
48
54
  sections = @config["sections"] || []
49
55
  sections.each do |section|
50
56
  items = collect_section_items(section)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllLlmsGenerator
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-llms-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Chance