Skip to content

Latest commit

 

History

History
375 lines (252 loc) · 17.8 KB

README-work.md

File metadata and controls

375 lines (252 loc) · 17.8 KB

Raku Markdown::Grammar

In brief

Markdown parser suitable for making converters of Markdown files into files of different kind of formats:

  • DONE Mathematica notebook
  • TODO RMarkdown notebook
  • DONE Jupyter notebook
  • DONE Pod6 file
  • DONE Org-mode file
  • DONE HTML file
  • DONE Raku data structure

See the video "Markdown to Mathematica converter (CLI and StackExchange examples)", [AAv1], for a (quick, 7.5 min) demo. The video [AAv2] shows the conversion of a Jupyter notebook into a Mathematica notebook via Markdown representation. The video [AAv3] shows conversions to POD6, Mathematica, and Jupyter and evaluations of those documents. (The evaluations are done with "Text::CodeProcessing", [AAp1].)

Motivation

Mathematica notebooks

I am most interested in generating Mathematica notebooks from Markdown.

I have written a fair amount of Raku-related Markdown documents. Many of those Markdown documents were generated from Mathematica notebooks using M2MD, [JPp1]. But of course, most of the time, further changes and embellishments were made over those Markdown documents. Hence it would be very nice to be able to go back to Mathematica.

Remark: Raku can be used in Mathematica via the so called RakuMode -- see [AA1].

Remark: Markdown documents with Raku code cells can be evaluated with Command Line Interface (CLI) scripts of the package "Text::CodeProcessing", [AAp1]. For more details see the article "Connecting Mathematica and Raku", [AA1].

Here is a flowchart that gives better idea of the workflow outlined above:

graph TD
    Rnb[Make Raku notebook in Mathematica]-->LT
    LT[Literate programming]-->GE
    GE{Good enough?}-->|yes|CN
    CN[Convert notebook to Markdown]-->P
    P["Publish (GitHUb/WordPress)"]-->SP
    SP-->|yes|R
    R[Review and modify]-->P
    GE-->|no|LT
    SP{Needs <br /> refinement?}-->|no|SD
    SD{Significantly <br /> different?}-->|yes|CM
    SD-->|no|PC
    CM[Convert Markdown document to notebook]-->PC
    PC["Publish to notebook Community.wolfram.com"]   
Loading

Pod6

The notebook formats have syntax that makes it hard to evaluate the conversions visually. That is why I use Pod6 -- during development it is much easier to evaluate the Pod6 interpretations produced by the package. (I.e. no need to use another tool to open and evaluate the obtained conversion artifact.)


Installation

From Zef ecosystem:

zef install Markdown::Grammar

From GitHub:

zef install https://github.com/antononcube/Raku-Markdown-Grammar.git

Round trip translation

Consider the following round trip translation experiment:

  1. Make a Mathematica notebook

  2. Convert WL notebook into Markdown file with the Mathematica package M2MD

  3. Convert the obtained Markdown file into Mathematica notebook using the Raku package "Markdown::Grammar"

  4. Compare the notebooks

Here is the corresponding flowchart:

graph TD
    WL[Make a Mathematica notebook] --> E
    E["Examine notebook(s)"] --> M2MD
    M2MD["Convert to Markdown with M2MD"] --> MG
    MG["Convert to Mathematica with Markdown::Grammar"] --> |Compare|E
Loading

Related work

Here is a table of converters from- or to Markdown:

From \ To HTML Jupyter Markdown Mathematica Pod6 Org-mode Raku
HTML pandoc pandoc pandoc
Jupyter Jupyter Jupyter, jupytext
Markdown pandoc, Markit, Text::Markdown, Markdown::Grammar jupytext, Markdown::Grammar Markdown2WL, md2nb, Markdown::Grammar Markdown::Grammar pandoc, Markdown::Grammar Markdown::Grammar
Mathematica M2MD
Pod6 Pod::To::Markdown
Org-mode pandoc, Org-mode pandoc, Org-mode

Remark: Pandoc attempts to be an universal converter, applicable for all couples of formats.

Remark: Except "this package" there are no other converters from Markdown to Pod6.

Remark: In general I like the idea of a Markdown-to-Mathematica converter written in Mathematica. The package "Markdown2WL" attempts that, but unfortunately it is fairly incomplete.

Remark: When starting this project I did not know about Connor's package "md2nb". (Written in Rust.) If I knew about it, most likely, I would have not written this package.


Command line interface

The package provides a Command Line Interface (CLI) script, from-markdown. Here is its usage message:

from-markdown --help

The CLI script from-markdown takes both file names and (Markdown) text. Here is an usage example for the latter:

from-markdown -to=pod6 'Here is data wrangling code:

    obj = dfTitanic;
    obj = GroupBy[ obj, #["passengerSex"]& ];  
    Echo[Map[ Length, obj], "counts:"]

## References'

Remark: Using the CLI script with the option setting --raku-cell-code-name=RakuInputExecute produces Raku cells that require the Mathematica package "RakuMode.m", [AAp2], to be loaded and the command RakuMode[] to be executed in the result notebook.

Remark: If CLI script's argument --output is a non-empty string and --format is "whatever" or "automatic", then an attempt is made to conclude the format to convert to from the extension of the file name given to --output.


Usage examples

Conversion of text

Consider the following Markdown text:

my $mtext = q:to/END/;
Here is data wrangling code:

    obj = dfTitanic;
    obj = GroupBy[ obj, #["passengerSex"]& ];
    Echo[Map[ Length, obj], "counts:"]

## References

### Articles

[AA1] Anton Antonov,
["Introduction to data wrangling with Raku"](https://rakuforprediction.wordpress.com/2021/12/31/introduction-to-data-wrangling-with-raku/),
(2021),
[RakuForPrediction at WordPress](https://rakuforprediction.wordpress.com).
END

say $mtext.chars;

Here is the corresponding Mathematica notebook:

use Markdown::Grammar;

from-markdown($mtext, to => 'mathematica')

Here is the corresponding Pod6 text:

from-markdown($mtext, to => 'pod6')

Section tree

The function md-section-tree extracts the Markdown blocks into a Hash-based tree that corresponds to the hierarchical sections structure of the Markdown document:

use Data::Translators;
md-section-tree($mtext) ==> data-translation(field-names => <type level name content>)

Here we just get the code blocks:

md-section-tree($mtext, modifier => 'code')

Parsing Markdown flavors

Obsidian

The parsing and interpretation of Obsidian flavor Markdown files is specified with the option "flavor". Here is an invocation within a Raku session:

from-markdown($mtext2, flavor => 'obsidian', to => 'jupyter');

Here is one of the ways to specify Obsidian file conversion via the CLI script:

from-markdown myObsidianFile.md -f obsidian -o myObsidianFile.ipynb  

Other examples are given in the test file "07-Jupyter-Obsidian.rakutest".

See also the dedicated GitHub repository: "obsidian-2-jupyter", [RMr1].


TODOs

The most important items are placed first.

  • DONE Parsing bold, italic, code "words."

  • TODO Parsing bold, italic, code "phrases."

  • DONE Parsing blocks with bold, italic formatting specs

  • DONE Parsing code blocks given with indentation.

  • DONE Parsing and interpretation of "deferred" links. E.g. [![enter image description here][1]][1].

    • This is somewhat complicated, needing a "second pass" interpreter.
    • The "second pass" is handled in the TOP action methods.
  • DONE Parsing quote lines and quote blocks

  • DONE Parsing tables

  • DONE Parsing LaTeX and/or math blocks

  • DONE Parsing inlined LaTeX code.

  • DONE Parsing LaTeX code with a docked cell button in the generated Mathematica notebook.

  • DONE Have option(s) for default language for code cells.

  • DONE Have option(s) for Raku code cell name.

  • TODO Have option(s) for skipping horizontal line specs.

  • TODO Parsing alternate syntax for heading 1 and 2

  • TODO Parsing escaping characters

  • TODO Parsing HTML

  • TODO Parsing most or all of the elements of the extended syntax, [MC1]


Acknowledgments

Many thanks to Jakub (Kuba) Podkalicki for programming the package "M2MD", and helping me to understand a fair amount of Mathematica's low-Level notebook programming.

Thanks to Rc Mlz for his request and guidance for parsing the Obsidian Markdown flavor and creating the dedicated Obsidian-to-Jupyter conversion repository, [RMr1].


References

Articles

[AA1] Anton Antonov, "Connecting Mathematica and Raku", (2021), RakuForPrediction at WordPress.

[FZ1] Faizon Zaman, "Parsing markdown files", (2021), Community.wolfram.com.

Guides

[JG1] John Gruber, Markdown: Syntax.

[MC1] Matt Cone, Markdown Guide.

[RC1] Raku Community, Raku Pod6.

Packages, paclets

[AAp1] Anton Antonov Text::CodeProcessing Raku package, (2021-2022), GitHub/antononcube.

[AAp2] Anton Antonov RakuMode Wolfram Language paclet, (2023), Wolfram Language Paclet Repository.

[FZp1] Faizon Zaman, Markdown2WL Mathematica package, (2021), GitHub/dishmint.

[JPp1] Jakub Podkalicki, M2MD, (2018-2022), GitHub/kubaPod.

[RMr1] Rc Mlz, obsidian-2-jupyter, (2024), GitHub/rcmlz.

Videos

[AAv1] Anton Antonov, "Markdown to Mathematica converter (CLI and StackExchange examples)", (2022), Anton A. Antonov's channel at YouTube.

[AAv2] Anton Antonov, "Markdown to Mathematica converter (Jupyter notebook example)", (2022), Anton A. Antonov's channel at YouTube.

[AAv3] Anton Antonov, "Conversion and evaluation of Raku files", (2022), Anton A. Antonov's channel at YouTube.