Skip to content

Commit

Permalink
Make tags work for starred environments. Resolves issue #316
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvc committed Jul 30, 2019
1 parent 5ea8103 commit ffb3591
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mathjax3-ts/input/tex/Tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,10 @@ export class AbstractTags implements Tags {
if (ct.taggable && !ct.noTag) {
if (ct.defaultTags) {
this.autoTag();
} else {
return null;
}
return this.makeTag();
if (ct.tag) {
return this.makeTag();
}
}
return null;
}
Expand Down

0 comments on commit ffb3591

Please sign in to comment.