yosinch / editing

document.execCommand in JavaScript for Blink
4 stars 6 forks source link

insertOrderedList: Implement merging lists beyond nested <blockquote>s #39

Open hajimehoshi opened 10 years ago

hajimehoshi commented 10 years ago

For exapmple,

<div ce>
  <blockquote><blockquote>f^oo</blockquote></blockquote>
  <blockquote><blockquote>ba|r</blockquote></blockquote>
</div>

must be

<div ce>
  <blockquote><blockquote>
    <ol><li>f^oo</li><li>ba|r</li></ol>
  </blockquote></blockquote>
</div>

.