Insertion - single line

Old text:

one two

New text:

one inserted two

Code:

<p>
  <r>
    <t>one</t>
  </r>
  <ins id="0" author="Peter Kelly" date="2012-10-14T16:40:00Z">
    <r>
      <t xml:space="preserve"> inserted</t>
    </r>
  </ins>
  <r>
    <t xml:space="preserve"> two</t>
  </r>
</p>

Insertion - multiple lines

Old text:

one two

New text:

one first
second
two

Code:

<p>
  <pPr>
    <rPr>
      <ins id="0" author="Peter Kelly" date="2012-10-14T16:47:00Z"/>
    </rPr>
  </pPr>
  <r>
    <t xml:space="preserve">one </t>
  </r>
  <ins id="1" author="Peter Kelly" date="2012-10-14T16:47:00Z">
    <r>
      <t>first</t>
    </r>
  </ins>
</p>
<p>
  <ins id="2" author="Peter Kelly" date="2012-10-14T16:47:00Z">
    <r>
      <t xml:space="preserve">second </t>
    </r>
  </ins>
  <r>
    <t>two</t>
  </r>
</p>

Insertion - new paragraph from above

Old text:

one two
three four

New text:

one two
new line

three four

Code:

<p>
  <pPr>
    <rPr>
      <ins id="0" author="Peter Kelly" date="2012-10-14T16:52:00Z"/>
    </rPr>
  </pPr>
  <r>
    <t>one two</t>
  </r>
</p>
<p>
  <ins id="1" author="Peter Kelly" date="2012-10-14T16:52:00Z">
    <r>
      <t>new line</t>
    </r>
  </ins>
</p>
<p>
  <r>
    <t>three four</t>
  </r>
</p>

Insertion - new paragraph from below

Old text:

one two
three four

New text:

one two
new line
three four

Code:

<p>
  <r>
    <t>one two</t>
  </r>
</p>
<p>
  <pPr>
    <rPr>
      <ins id="0" author="Peter Kelly" date="2012-10-14T16:55:00Z"/>
    </rPr>
  </pPr>
  <ins id="1" author="Peter Kelly" date="2012-10-14T16:55:00Z">
    <r>
      <t>new line</t>
    </r>
  </ins>
</p>
<p>
  <r>
    <t>three four</t>
  </r>
</p>

Deletion - single line

Old text:

one two three

New text:

one two three

Code:

<p>
  <r>
    <t>one</t>
  </r>
  <del id="0" author="Peter Kelly" date="2012-10-14T17:01:00Z">
    <r rsidDel="005113D3">
      <delText xml:space="preserve"> two</delText>
    </r>
  </del>
  <r>
    <t xml:space="preserve"> three</t>
  </r>
</p>

Deletion - multiple lines

Old text:

one two
three four

New text:

one two\nthree four

Code:

<p>
  <pPr>
    <rPr>
      <del id="0" author="Peter Kelly" date="2012-10-14T17:04:00Z"/>
    </rPr>
    <pPrChange id="1" author="Peter Kelly" date="2012-10-14T17:04:00Z">
      <pPr/>
    </pPrChange>
  </pPr>
  <r>
    <t>one</t>
  </r>
  <del id="3" author="Peter Kelly" date="2012-10-14T17:04:00Z">
    <r>
      <delText xml:space="preserve"> two</delText>
    </r>
  </del>
</p>
<p>
  <del id="4" author="Peter Kelly" date="2012-10-14T17:04:00Z">
    <r>
      <delText>three</delText>
    </r>
  </del>
  <r>
    <t xml:space="preserve"> four</t>
  </r>
</p>

Delete - separate deletions on adjacent lines

Old text:

one two
three four

New text:

one two
three four

Code:

<p>
  <r>
    <t>one</t>
  </r>
  <del id="0" author="Peter Kelly" date="2012-10-14T17:08:00Z">
    <r>
      <delText xml:space="preserve"> two</delText>
    </r>
  </del>
</p>
<p>
  <del id="2" author="Peter Kelly" date="2012-10-14T17:08:00Z">
    <r>
      <delText xml:space="preserve">three </delText>
    </r>
  </del>
  <r>
    <t>four</t>
  </r>
</p>

Delete - entire paragraph

Old text:

one two
three four
five six

New text:

one two
three four
five six

Code:

<p>
  <r>
    <t>one two</t>
  </r>
</p>
<p>
  <pPr>
    <rPr>
      <del id="0" author="Peter Kelly" date="2012-10-14T17:11:00Z"/>
    </rPr>
  </pPr>
  <del id="2" author="Peter Kelly" date="2012-10-14T17:11:00Z">
    <r>
      <delText>three four</delText>
    </r>
  </del>
</p>
<p>
  <r>
    <t>five six</t>
  </r>
</p>