Skip to content
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

Table Cell Element is not currently exporting the contents on export #37

Open
velara3 opened this issue Jul 1, 2014 · 0 comments
Open

Comments

@velara3
Copy link
Collaborator

velara3 commented Jul 1, 2014

When exporting a Table Cell Element, the contents of the cell are not exported. For example, a table cell with a paragraph that says "Hello world" should export the following:

<table>
  <tr>
    <td><p>Hello World</p></td>
  </tr>
</table>

Or:

<table>
  <tr>
    <td><TextFlow><p>Hello World</p></TextFlow></td>
  </tr>
</table>

but currently it is only exporting:

<table>
  <tr>
    <td />
  </tr>
</table>

Steps to reproduce:

  1. Open Table Explorer
  2. Click Add Editable Table
  3. Type content into the first cell
  4. Check the Text Flow output text area

It should be showing the contents of the cell but it currently does not.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant