1.0.5 • Published 2 years ago

joplin-plugin-markdown-calc v1.0.5

Weekly downloads
3
License
MIT
Repository
-
Last release
2 years ago

Joplin Markdown table calculations plugin

Joplin editor plugin for making calculations in markdown tables. Inspired by an Emacs Org mode feature which allows to make TBLFM comments under the table and perform calculations.

References/thanks

Big thanks to authors of two projects which are the calculation engine core:

  • Markdown-it with the wonderful Markdown parser, I've used it to locate and extract table data in a Markdown document.
  • Hot formula parser - incredible useful library for evauating mathematical formulas.

Features

  • Define table formulas in Markdown files
  • Recalculate all formulas in a file using custom command

Usage: formula list

To define a set of table formulas, you can add a special HTML comment below a given Markdown table (TBLFM is a tribute to an Emacs Org mode :) . Only the first comment directly under the table will be taken into account. You can use TBLFM or TABLE_FORMULAS strings to indicate formula list.

| Column A | Column B | Column C |
|:---------|:---------|:---------|
| 123      | 456      | 789      |
| 0        | 0        | 0        |
<!--TBLFM C2=A1+A2; C1=56*78/4 -->

The comment can span multiple lines and contain multiple formulas separated by a semicolon. Formulas are calculated in the following order: first row then all its columns fron the left to the right, second row ... etc. Table cells are described using spreadsheet notation, columns designated with letters like A,B,C .. Z (and even more AA, AB etc.) and rows with integers 1,2,3 ... You can also use range notation like A1:E23. Moreover, hot-formula-parser contains also a big set of predefined functions which can be used in formulas. For list of the formula functions and their use, please look at: https://formulajs.info/functions/ (however, I didn't check all of them).

Usage: inline cell formulas

There is also a possibility to define formulas directly inside the cell. To do so, you need to insert a special comment inside the cell content with FM or FORMULA indicator.

| Column A | Column B |    Column C     |
|:---------|:---------|:----------------|
| 123      | 456      | 789             |
| 0        | 0        | <!--FM A1+C1 -->|

WARNING! If you use both cases in the same table, inline cell formulas are overwritten by the formulas put into the list below the table!

Plugin command

The plugin registers markdownCalculate command and adds it to the editor toolbar (the fa-square-root-alt icon).

Important Notes

  1. WYSIWYG editor removes HTML comments, so you will loose formula definitions.
  2. Table values are updated using internal editor.setText command, so you will be unable to undo changes.
  3. Cell values are converted to float numbers. If conversion fail, the cell value will be returned as a string. However, you need to remember that strings like 7/18/2011 7:45:00 AM will be properly parsed as float 7. To use them as strings, they have to be written in double quote "7/18/2011 7:45:00 AM".

Building the plugin

To build the plugin, simply run npm run dist.

1.0.5

2 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago