Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/pitch/convert_pitch_to_markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def execute(cls, llm: LLM, user_prompt: str) -> 'ConvertPitchToMarkdown':
markdown_content = response_content # Use the entire content if delimiters are missing
logger.warning("Output delimiters not found in LLM response.")

# The bullet lists are supposed to be preceeded by 2 newlines.
# The bullet lists are supposed to be preceded by 2 newlines.
# However often there is just 1 newline.
# This fix makes sure there are 2 newlines before bullet lists.
markdown_content = fix_bullet_lists(markdown_content)
Expand Down