Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New features: added two fields at the top of CodeBlock:
start_line_numbers_at
andhighlight_lines_extra
.Logic of the field
start_line_numbers_at
is as follows:enable_line_numbers_at
field as follows:2.1 The positive value sets
enable_line_numbers="true"
.2.2 A negative value sets
enable_line_numbers="false"
, the value of start_line_numbers_at will also be specified and become positive.2.3 An uninstalled (undefined) value sets
enable_line_numbers="false"
.Logic of
highlight_lines_extra
field operation is as follows:4.The possibility to specify "relative" values has been implemented - i.e. if, for example, we have a certain piece of code, the numbering of which starts with 37 lines, and we need to highlight the 53rd and 68th lines of code, then in the field we type: "53,68" (without quotes). In the standard DokuWiki editor we will still have absolute values.