-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
copying <dfn> into a list improperly duplicates tags #12
Comments
A few things here...
To paste your Closing as there is nothing I can do here. |
There is indeed something you can do here. Add the rule: "if the cursor is at the beginning of a series of inline elements and the user hits Enter, don't create a whole list of empty inline elements, as it is obvious that the user wants the newline to take place before them." That is, if I my cursor is here:
If I hit Enter, it is obvious that I want to create this:
and not
|
Ah, that's a very good tip. Thanks. It seems to be working; I'll keep testing it. (Still the suggestion I indicated above could make it all more user friendly.) |
Let's say I start with the following list:
Let's say elsewhere I have the following paragraph:
I then:
<dfn>foo</dfn>
in the WYSIWYG view and copy it.bar
in the above list and hit Enter to create a new line.I expect to see this:
But what I actually get is this:
This messy stuff happens all over the place when I am working with lists.
Note that the Markup Cleaner tool does not remove the extra
<br />
tags. See #9.The text was updated successfully, but these errors were encountered: