Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Code block lineno-start turns on line numbers #46

Merged
merged 3 commits into from
Sep 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/examples/directives.code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ cases:
return 5
</code></pre>

- title: Code-block directive cannot spcify linenos without showing them
- title: Code-block directive shows line numbers without explicit linenos flag
mdast:
type: root
children:
Expand All @@ -122,6 +122,8 @@ cases:
children:
- type: code
lang: python
showLineNumbers: true
startingLineNumber: 2
value: |-
def five():
return 5
Expand Down