We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now, the Showmore plugin allows to hide 1 or more lines of code.
Allow ranges to accept columns:
+showmore=2:10..2:20
+showmore=2:10..20
+showmore=2:10..3:20
Additional attributes which are not important for the code:
```html +showmore=1:24..35 <input class="my-field" type="text"> ```
<input class="my-field" ···>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now, the Showmore plugin allows to hide 1 or more lines of code.
New feature
Allow ranges to accept columns:
+showmore=2:10..2:20
: Hide character 10 to 20 in line 2+showmore=2:10..20
: Hide character 10 to 20 in line 2+showmore=2:10..3:20
: Hide character 10 in line 2 to 20 in line 3Example use case
Additional attributes which are not important for the code:
Expected result
The text was updated successfully, but these errors were encountered: