| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package org.cnnlp.data;
- ////////
- /*
- * org.commonmark.renderer.text.CoreTextContentNodeRenderer 的改造
- * private void writeEndOfLineIfNeeded(Node node, Character c) {
- if (context.stripNewlines()) {
- if (c != null) {
- textContent.write(c);
- }
-
- ///QQQ 2020.2.5 注释掉,英文文档词之间需要空格,而中文不需要
- // if (node.getNext() != null) {
- // textContent.whitespace();
- // }
- } else {
- if (node.getNext() != null) {
- textContent.line();
- }
- }
- }
- */
- /*
- * JODConverter, the Java OpenDocument Converter, converts documents between different office formats. It leverages Apache OpenOffice or LibreOffice, which provide arguably the best free import/export filters for OpenDocument and Microsoft Office formats available today.
- JODConverter automates all conversions supported by OpenOffice/LibreOffice. Supported conversions include:
- | Document Type | Input Format | Output Format |
- | ------------- | ------------------------------- | --------------------------------------------- |
- | Text | DOC, DOCX, ODT, OTT, RTF, TEXT | DOC, DOCX, HTML, ODT, OTT, PDF, PNG, RTF, TXT |
- | Spreadsheet | CSV, ODS, OTS, TSV, XLS, XLSX | CSV, HTML, ODS, OTS, PDF, PNG, TSV, XLS, XLSX |
- | Presentation | ODP, OTP, PPT, PPTX | HTML, ODP, OTP, PDF, PNG, PPT, PPTX, SWF |
- | Drawing | ODG, OTG | ODG, OTG, PDF, PNG, SWF |
- | Other | HTML | DOC, DOCX, HTML, ODT, OTT, PDF, PNG, RTF, TXT |
- */
- public class ReadMe {
-
- }
|