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
We can find that Live Preview is still missing several cells/content.
If we can prevent parsing =, maybe they could work together.
For example, changing the regular expression as follows:
- (?<![\\~])~(?!~)+ (?<![\\~=])~(?=\s*[.{])
In the lookbehind (first half), adding = along with tilde and backslash.
In the lookahead (second half), change it to positive lookahead and only accepts dot or left-brace.
Would this be feasible?
The text was updated successfully, but these errors were encountered:
Fast Text Color uses
={color} and =as markers, and this does not work well with Sheets Extended (obsidan-advanced-table-xt).Is it possible to constrain the allowed adjacent characters, e.g., prevent the following char being
=
?Here are some samples to test with.
For example, in the 2nd section, where escape is added as follows
We can find that Live Preview is still missing several cells/content.
If we can prevent parsing
=
, maybe they could work together.For example, changing the regular expression as follows:
In the lookbehind (first half), adding
=
along with tilde and backslash.In the lookahead (second half), change it to positive lookahead and only accepts dot or left-brace.
Would this be feasible?
The text was updated successfully, but these errors were encountered: