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
Add a new lines operations which simply counts the number of lines that it contains.
lines
Add a secondary operation that ignores blank lines (e.g. linesIgnoreBlank).
linesIgnoreBlank
The text was updated successfully, but these errors were encountered:
I don't think that this will be so easy to do since the DOM may have more lines than what the user sees. For example:
foo bar
Could be presented based on the following HTML:
<p> foo bar </p>
Line count of p would should 3 where the user would expect 1. I'm going to have to rethink this so I'm removing from 1.2.7.
p
Sorry, something went wrong.
No branches or pull requests
Add a new
lines
operations which simply counts the number of lines that it contains.Optional
Add a secondary operation that ignores blank lines (e.g.
linesIgnoreBlank
).The text was updated successfully, but these errors were encountered: