Skip to content

Commit

Permalink
Merge pull request #648 from mlucool/patch-1
Browse files Browse the repository at this point in the history
Update cell marker format to use bold correctly
  • Loading branch information
vidartf committed Jan 15, 2023
2 parents a02615e + 39bbff7 commit 0d57918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbdime/merging/strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def output_marker(text):


def _cell_marker_format(text):
return '<span style="color:red">**{0}**</span>'.format(text)
return '<span style="color:red"><b>{0}</b></span>'.format(text)


def cell_marker(text):
Expand Down

0 comments on commit 0d57918

Please sign in to comment.