Skip to content

Commit

Permalink
Editorial: Add CSS to adjust list bullets to match ECMA (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
takikawa authored Nov 21, 2024
1 parent 17ef27f commit 1bd4b5c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions source-map.bs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,17 @@ urlPrefix:https://webassembly.github.io/spec/core/; type:dfn; spec:wasm
}
</pre>

<style>
/* match list styles of ecmarkup */
ol > li { list-style-type: decimal; } /* depth 1 */
ol ol > li { list-style-type: lower-alpha; } /* depth 2 */
ol ol ol > li { list-style-type: lower-roman; } /* depth 3 */
ol ol ol ol > li { list-style-type: decimal; } /* depth 4 */
ol ol ol ol ol > li { list-style-type: lower-alpha; } /* depth 5 */
ol ol ol ol ol ol > li { list-style-type: lower-roman; } /* depth 6 */
ol ol ol ol ol ol ol > li { list-style-type: lower-roman; } /* depth 7+ is lower-roman */
</style>

<h2 class="no-num" id="intro">Introduction</h2>

This Ecma Standard defines the Source Map Format, used for mapping transpiled source code back to the original sources.
Expand Down

0 comments on commit 1bd4b5c

Please sign in to comment.