Convert Excel documents to wiki markup

前端 未结 11 1405
自闭症患者
自闭症患者 2021-02-13 02:32

Is it possible to convert Excel spreadsheets into MediaWiki markup? I stumpled upon strange recommendations exporting to HTML and convert it into markup. Is there a solution, ma

相关标签:
11条回答
  • 2021-02-13 03:00

    My port of Shan Carter's Mr. Data Converter now supports the Wiki table format. You can copy & paste directly from Excel or from a CSV file.

    http://thdoan.github.io/mr-data-converter/

    0 讨论(0)
  • 2021-02-13 03:01

    Here is a simple python script that I threw together for my needs. This doesn't handle cell formatting or anything of that nature, but if you just need to get a large table into the MediaWiki format, it'll do the trick. It depends on xlrd.

    Usage of this script is as simple as

    python xl2wiki.py input.xls
    

    If you want to save the output to another file, just do

    python xl2wiki.py input.xls output.txt
    
    0 讨论(0)
  • I know of three options:

    1. Install a WYSIWYG editor extension like FCKeditor (see also Official). Advantage: fairly easy Paste As Word (and therefore also as Excel) button. Disadvantage: installation can be tricky.
    2. Use a macro in Excel. Advantage: a one-click creation of markup. Disadvantage: client-side solution (so need it for all users).

    My preference is the FCKeditor option because once it is installed it works pretty well.

    0 讨论(0)
  • 2021-02-13 03:04

    MediaWiki supports HTML syntax for tables. The wikitext doesn't look nice and is harder to edit, but if you are just going to copy&paste anyway, it works. And there should be plenty of tools for converting from Excel (or CSV, ODS) to HTML.

    Damn, I should find the time to add native CSV supprot to MediaWiki.

    0 讨论(0)
  • 2021-02-13 03:05

    You can do this in a graphical interface, with proper software.

    • Install LibreOffice and add the "wiki publisher" extension, often contained in a package named libreoffice-wiki-publisher.
    • Open your spreadsheet with LibreOffice Calc, copy your table.
    • Open a new Writer document, paste with Edit > Paste special (RTF style).
    • Find "Export" in the menu, select "MediaWiki (txt)" in the format dropdown and confirm.
    • (Optional.) In your preferred text editor, remove any excess table HTML markup with a couple of simple text replacements and replace the first line {| with {| class="wikitable" to have pretty backgrounds and borders.

    LibreOffice is free/open source software and is better than Excel at handling Excel's own spreadsheets, as you see. There used to be an Office plugin too but I've not heard of anyone using it recently.

    You may need table styles, available in LibreOffice 5+; but in the meanwhile you can just apply CSS classes to your MediaWiki table.

    Alternatively, just copy and paste your table in a page powered by VisualEditor, which is quite good for tables. If your wiki doens't have it, you could still use the MediaWiki.org sandbox: paste your rich text, click the pencil button at the top and then "wikitext/source editing", cut the wikitext and paste into your wiki.

    0 讨论(0)
  • 2021-02-13 03:06

    There is also a little converter in .net. A small executable:

    https://sourceforge.net/projects/csv2other/?source=navbar

    It takes in input both CSV or Excel files.
    Limit: it only works on the first page of the excel document.

    0 讨论(0)
提交回复
热议问题