![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
:warning: The MyST AST specification is still in dev; any structures or features present in the JSON schema may change at any time without notice.
MyST (Markedly Structured Text) is designed to create publication-quality, computational documents written entirely in Markdown. The main use case driving the development and design of MyST is JupyterBook, which creates educational online textbooks and tutorials with Jupyter Notebooks and narrative content written in MyST.
MyST is a superset of CommonMark (a standard form of Markdown) and allows you to directly create “directives” and “roles” as extension points in the language. These extensions points are influenced by ReStructured Text (RST) and Sphinx -- pulling on the nomenclature and introducing additional standards where appropriate. directives
are block-level extension points, like callout panels, tabs, figures or embedded charts; and roles
are inline extension points, for components like references, citations, or inline math.
```{directive} Argument
The *content* of a directive can have {role}`with content`
```
myst-spec
is designed to standardize implementations and extensions to MyST, with the goal of making the MyST ecosystem as rich and interoperable as possible. The spec formalizes three formats:
The myst-spec
will be improved overtime through enhancement proposals which can be submitted by our multi-stakeholder community. [IN PROGRESS]
This repository introduces tests to cover the MyST Spec. These tests cover three target formats: myst
, mdast
, and html
. An simple example test case (in yaml) for a header looks like:
cases:
- title: CommonMark headers
myst: |-
# Heading!
mdast:
type: root
children:
- type: heading
depth: 1
children:
- type: text
value: Heading!
html: |-
<h1>Heading!</h1>
[TBD: Do we include latex here, maybe?]
mdast
Markdown AST, or mdast
, is an intermediate format that builds upon the existing mdast spec, which is used throughout the unifiedjs Javascript community with hundreds of existing transformations, utilities and serializers. mdast
is simple, with a type
defining the node optional properties on the node and optional children
(a leaf node has a value
).
Beyond CommonMark and GitHub Flavoured Markdown, MyST introduces new directives and roles (like admonitions, citations, equations) following existing standards where they are defined. mdast
is serializable to JSON or YAML, and can be effectively shared between projects, languages and implementations. The output of this repository is a versioned JSON file that can be used in implementations of MyST.
schema/
|- myst.schema.json // root schema definition
|- myst.md // docs
|- schema.spec.ts // test for validating all examples against the schema
|- unist/
| |- unist.schema.json // unist base types
| |- unist.md // docs
| |- unist.yml // example mdast structures
|- commonmark/
| |- commonmark.schema.json // commonmark mdast types
| |- commonmark.md // docs
| |- commonmark.yml // simple commonmark examples
| |- cmark_spec_0.30.yml // commonmark spec examples
...
|- roles/ // future myst features
| |- roles.schema.json
| ...
|- directives/
| |- directives.schema.json
| ...
[TODO]
FAQs
MyST schema, testcases, and typescript types
The npm package myst-spec receives a total of 0 weekly downloads. As such, myst-spec popularity was classified as not popular.
We found that myst-spec demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.