Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -171,7 +171,7 @@ def create_pdf_tab(default_markdown):
|
|
| 171 |
text = item.replace('<b>', '').replace('</b>', '')
|
| 172 |
column_cells[col_idx].append(Paragraph(apply_emoji_font(text, selected_font_name), section_style))
|
| 173 |
else:
|
| 174 |
-
column_cells[col_idx].append(Paragraph(
|
| 175 |
|
| 176 |
max_cells = max(len(cells) for cells in column_cells) if column_cells else 0
|
| 177 |
for cells in column_cells:
|
|
|
|
| 171 |
text = item.replace('<b>', '').replace('</b>', '')
|
| 172 |
column_cells[col_idx].append(Paragraph(apply_emoji_font(text, selected_font_name), section_style))
|
| 173 |
else:
|
| 174 |
+
column_cells[col_idx].append(Paragraph(apply_emoji_font(item, selected_font_name), item_style))
|
| 175 |
|
| 176 |
max_cells = max(len(cells) for cells in column_cells) if column_cells else 0
|
| 177 |
for cells in column_cells:
|