Skip to content

Commit

Permalink
removed <divs>
Browse files Browse the repository at this point in the history
  • Loading branch information
weissm committed Nov 26, 2024
1 parent 921d64e commit b3c24d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OneMore/Commands/File/Markdown/MarkdownWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ private void Write(XElement container,
if (bordersVisible.Equals("true"))
{
writer.WriteLine();
writer.Write(prefix.indents + "<div> <style> td, th { border: 1px solid black; } </style>");
writer.Write(prefix.indents + "<style> td, th { border: 1px solid black; } </style>");
}
}
if (contained)
Expand All @@ -365,7 +365,7 @@ private void Write(XElement container,
}
if (bordersVisible.Equals("true"))
{
writer.Write(prefix.indents + "<div> <style> td, th { border: none; } </style>");
writer.Write(prefix.indents + "<style> td, th { border: none; } </style>");
}
// Write extra line
writer.WriteLine();
Expand Down

0 comments on commit b3c24d7

Please sign in to comment.