Remove default heading from Bible content formatting

- Eliminate automatic heading generation in BibleFormatter
- Simplify content block generation for Bible passages
This commit is contained in:
Scott Tomaszewski 2025-03-10 12:16:35 -04:00
parent 4191889553
commit 8f5c5c43d7

View file

@ -13,9 +13,6 @@ export class BibleFormatter {
let content = "";
// Add heading
content += `# ${passage.reference}\n\n`;
// Add code block for rendering
content += "```bible\n";
content += passage.reference;