Breaklines In Deluge/OpenAI

Breaklines In Deluge/OpenAI

I've created a model in OpenAI to take a transcript, summarize it in bullet points, and e-mail it.  I'm able to format the e-mail intro and ending (the text I can control in Deluge), but I'm not able to format what gets sent and returned to OpenAI- the bullet points with line breaks or bold the text.  I've tried <br>, <b> **, /n, etc.  Does anyone have experience with this?  

prompt = "Extract the following information from the conversation transcript below:<br><br>" + "1. **Transcript Summarization** (Return as structured text):<br>" + "   - **Key Talking Points**: Identify and summarize the main topics discussed in the transcript. Present these as a bullet list. Ensure that each bullet point ends with a newline character.\"" + "   - **Follow-Up Actions**: Identify any actionable next steps or follow-up actions based on the conversation. Present these as a bullet list, with each item separated by a newline character" + "Return the output as two clearly separated parts:<br><br>" + "---<br><b>Part 1: Key Talking Points/n- Item 1<br>- Item 2<br>- Item 3<br><br>" + "---<br>**Part 2: Follow-Up Actions**<br>- Action 1<br>- Action 2<br>- Action 3<br><br>" + "Please include both parts exactly as specified.<br><br>Transcript:<br>" + transcript;