mirror of
https://github.com/anoma/juvix.git
synced 2024-12-21 05:41:49 +03:00
bd16d3ef2a
This PR adds an initial support for Literate Juvix Markdown files, files with the extension `.juvix.md`. Here is a small example of such a file: `Test.juvix.md`. <pre> # This is a heading Lorem ... ```juvix module Test; type A := a; fun : A -> A | _ := a; ``` Other text </pre> This initial support enables users to execute common commands such as typechecking, compilation, and HTML generation. Additionally, a new command called `markdown` has been introduced. This command replaces code blocks marked with the juvix attribute with their respective HTML output, much like the output we obtain when running `juvix html`. In this version, comments are ignored in the output, including judoc blocks. - We intend to use this new feature in combination with this Python plugin (https://github.com/anoma/juvix-mkdocs) to enhance our documentation site. https://github.com/anoma/juvix/assets/1428088/a0c17f36-3d76-42cc-a571-91f885866874 ## Future work Open as issues once this PR is merged, we can work on the following: - Support imports of Juvix Markdown modules (update the path resolver to support imports of Literate Markdown files) - Support (Judoc) comments in md Juvix blocks - Support Markdown in Judoc blocks - Update Text editor support, vscode extension and emacs mode (the highlighting info is a few characters off in the current state) - Closes #1839 - Closes #1719
19 lines
520 B
Haskell
19 lines
520 B
Haskell
module Commands.Compile.Options
|
|
( module Commands.Compile.Options,
|
|
module Commands.Extra.Compile.Options,
|
|
)
|
|
where
|
|
|
|
import Commands.Extra.Compile.Options
|
|
import CommonOptions
|
|
import Data.List.NonEmpty qualified as NonEmpty
|
|
|
|
supportedTargets :: NonEmpty CompileTarget
|
|
supportedTargets = NonEmpty.fromList allTargets
|
|
|
|
parseMainCompileOptions :: Parser CompileOptions
|
|
parseMainCompileOptions =
|
|
parseCompileOptions
|
|
supportedTargets
|
|
(parseInputFiles (NonEmpty.fromList [FileExtJuvix, FileExtJuvixMarkdown]))
|