Skip to content

Commit

Permalink
fix(cshtml): remove extra space in html tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed May 14, 2024
1 parent b4067c4 commit 63871e2
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 107 deletions.
2 changes: 1 addition & 1 deletion src/lib/writer-html.cc
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ void HtmlWriter::handleDef(const Defect &def)
d->writeLinkToDetails(def);

// link to self
d->str << " <a href ='#def"
d->str << " <a href='#def"
<< d->defCnt << "'>[#def"
<< d->defCnt << "]</a>";

Expand Down
Loading

0 comments on commit 63871e2

Please sign in to comment.