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
When we select a highlighted section like so (start and end of selection indicated with (|)): |Test of a ==highlighted selection== and more|
and the highlight button is clicked I would expext to expand the highlighted section. Two more equal signs are added around the selection but the "nested" highlight equal signs are not removed. This breaks the highlight markdown.
Current Behaviour
When we select a highlighted section like so (start and end of selection indicated with (|)): |Test of a ==highlighted selection== and more|
clicking the highlight button results in: ==Test of a ==highlighted selection== and more==|
Expected Behaviour
When we select a highlighted section like so (start and end of selection indicated with (|)): |Test of a ==highlighted selection== and more|
clicking the highlight button should result in: ==Test of a highlighted selection and more==|
or as an intermediate step should remove all equal signs that are in pair of two inside of the selection: Test of a highlighted selection and more|
How To
count equal signs in pair of two in selection (e.g.: with regex ={2}\b|\b={2})
if (count > 0): remove all pair of two in selection
do highlight as implemented
The text was updated successfully, but these errors were encountered:
When we select a highlighted section like so (start and end of selection indicated with (
|
)):|Test of a ==highlighted selection== and more|
and the highlight button is clicked I would expext to expand the highlighted section. Two more equal signs are added around the selection but the "nested" highlight equal signs are not removed. This breaks the highlight markdown.
Current Behaviour
When we select a highlighted section like so (start and end of selection indicated with (
|
)):|Test of a ==highlighted selection== and more|
clicking the highlight button results in:
==Test of a ==highlighted selection== and more==|
Expected Behaviour
When we select a highlighted section like so (start and end of selection indicated with (
|
)):|Test of a ==highlighted selection== and more|
clicking the highlight button should result in:
==Test of a highlighted selection and more==|
or as an intermediate step should remove all equal signs that are in pair of two inside of the selection:
Test of a highlighted selection and more|
How To
={2}\b|\b={2}
)The text was updated successfully, but these errors were encountered: