Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OSEE/HowTo/ImportArtifacts"

< OSEE‎ | HowTo
(SpreadsheetML)
(SpreadsheetML)
Line 2: Line 2:
 
* Excel appears to be able to display n amount of decimal places for number but does not save those numbers as it displays them.
 
* Excel appears to be able to display n amount of decimal places for number but does not save those numbers as it displays them.
 
*: [[Image:excel_issues.png]]
 
*: [[Image:excel_issues.png]]
*: Importer detects (with <code>"\\d{1}+"</code>) and appends <code>.0</code> at the end.
+
*: Importer detects this case with <code>"\\d{1}+"</code> and appends <code>.0</code> at the end.
  
 
== WordML ==
 
== WordML ==

Revision as of 12:15, 31 March 2011

SpreadsheetML

  • Excel appears to be able to display n amount of decimal places for number but does not save those numbers as it displays them.
    Excel issues.png
    Importer detects this case with "\\d{1}+" and appends .0 at the end.

WordML

Rules:

  • Paragraph number and title cannot be in the same line (paragraph) as the content.

WRONG:

Paragraph number wrong.png

RIGHT:

Paragraph number correct.png

  • Paragraph numbers and titles cannot be embedded into a table. Any content (i.e. table) has to be in a new line after paragraph number and title.
  • Tables of contents and any section preceding the usual "1.0 Paragraph Title" need to be removed
  • Paragraph headings must be numbered
  • For large imports having content in the same line as the paragraph title, we have a WordMLNewLineMaker which this process.

Back to the top