all repos — hastyscribe @ 2f211197d0cd98998c4b4c1a0987a867212a1acc

A professional markdown compiler.

headings.css

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
h2 {
  counter-reset:h3;
  counter-increment: h2;
}
h2::before {
  content: counter(h2) " " "\2013" " ";
}
h3 {
  counter-reset:h4;
  counter-increment: h3;
}
h3::before {
  content: counter(h2) "." counter(h3) " " "\2013" " ";
}
h4 {
  counter-reset:h5;
  counter-increment: h4;
}
h4::before {
  content: counter(h2) "." counter(h3) "." counter(h4) " " "\2013" " ";
}
h5 {
  counter-reset:h6;
  counter-increment: h5;
}
h5::before {
  content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) " " "\2013" " ";
}
h6 {
  counter-increment: h6;
}
h6::before {
  content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) " " "\2013" " ";
}

/***************/

#toc {
  counter-reset: toc2;
}

#toc li li a {
  counter-reset:toc3;
  counter-increment: toc2;
}
#toc li li a::before {
  content: counter(toc2) " " "\2013" " ";
}
#toc li li li a {
  counter-reset:toc4;
  counter-increment: toc3;
}
#toc li li li a::before {
  content: counter(toc2) "." counter(toc3) " " "\2013" " ";
}
#toc li li li li a {
  counter-reset:toc5;
  counter-increment: toc4;
}
#toc li li li li a::before {
  content: counter(toc2) "." counter(toc3) "." counter(toc4) " " "\2013" " ";
}
#toc li li li li li a {
  counter-reset:toc6;
  counter-increment: toc5;
}
#toc li li li li li a::before {
  content: counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) " " "\2013" " ";
}
#toc li li li li li li a {
  counter-increment: toc6;
}
#toc li li li li li li a::before {
  content: counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) "." counter(toc6) " " "\2013" " ";
}