Skip to main content
Typora

Typora #

I have stopped using Typora. Proceed at your own risk.

Extra CSS #

Under theme folder, create base.user.css with:

del {
  text-decoration: none;
  color: red;
}
table{
  counter-reset: tr-number;
}
tr>td:nth-child(1)::before{
  counter-increment: tr-number;
  content: counter(tr-number);
}

Ref: