extract-from-sitemap 0.0.15 → 0.0.16
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.
- package/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -502,7 +502,7 @@ function getPathPrefix(topLevelOutDir, sourceOutDir) {
|
|
|
502
502
|
* @returns {string} Combined llms.txt content
|
|
503
503
|
*/
|
|
504
504
|
function generateCombinedLlmsTxt(title, description, details, allSources) {
|
|
505
|
-
let combinedTxt = `#
|
|
505
|
+
let combinedTxt = `# ${title}\n\n> ${description}\n\n`;
|
|
506
506
|
|
|
507
507
|
if (details) {
|
|
508
508
|
combinedTxt += `${details}\n\n`;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "extract-from-sitemap",
|
|
3
3
|
"bin": "cli.js",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16",
|
|
5
5
|
"main": "mod.js",
|
|
6
6
|
"description": "A module and CLI that allows extracting all pages from a sitemap into markdown and a llms.txt, using Parallel.ai APIs.",
|
|
7
7
|
"files": [
|