You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't a huge priority, but I wanted to list it here as food for thought.
I'd like to only hide the class attribute text if it doesn't stand on its own line already, because that indicates that I am having exactly one attribute per line. In order to do that, I could match for \S\s+class="$, but the current preceding_text setting does not support this kind of flexibility.
Example:
<spanclass="text-danger">
some text be here. the class above should be folded
</span><spanclass="text-danger"
>
more text. here, the class should not be folded
</span>
The text was updated successfully, but these errors were encountered:
This isn't a huge priority, but I wanted to list it here as food for thought.
I'd like to only hide the class attribute text if it doesn't stand on its own line already, because that indicates that I am having exactly one attribute per line. In order to do that, I could match for
\S\s+class="$
, but the currentpreceding_text
setting does not support this kind of flexibility.Example:
The text was updated successfully, but these errors were encountered: