Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .jules/bolt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Bolt's Journal

This journal tracks critical performance learnings, failed experiments, and architectural bottlenecks.

## Template
## YYYY-MM-DD - [Title]
**Learning:** [Insight]
**Action:** [How to apply next time]
2 changes: 1 addition & 1 deletion backend/src/utils/htmlExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export function extractContentWithXPath(
throw new Error(`HTML解析致命错误: ${msg}`);
},
};
console.log("html", html);
// Removed console.log("html", html) to prevent performance issues with large HTML strings
const doc = new DOMParser({
errorHandler: errorHandler,
}).parseFromString(html);
Expand Down