react-native-enriched-markdown-scaffold
v0.6.0-scaffold.8
Published
Markdown Text component for React Native
Downloads
3,895
Maintainers
Readme
react-native-enriched-markdown-scaffold
A fork of
react-native-enriched-markdown. Not official.
Why this exists
Upstream react-native-enriched-markdown ships from Software Mansion on its own schedule. We needed to:
- pin an exact tree (including in-flight features such as the math chip) to a versioned npm artifact;
- consume it across multiple internal projects without git submodules or
npm link; - keep upstream merges conflict-free — the in-tree package keeps its original name; only the publish step rewrites the manifest.
If you are an external user, prefer the upstream package: npm i react-native-enriched-markdown.
Install
yarn add react-native-enriched-markdown-scaffold
# or
npm i react-native-enriched-markdown-scaffoldPeer deps (same as upstream): react, react-native. Optional: @expo/config-plugins, katex.
Usage
API is identical to upstream — just swap the import:
// Same components, same props, same types.
import {
EnrichedMarkdownText,
EnrichedMarkdownTextInput,
type MarkdownStyle,
} from 'react-native-enriched-markdown-scaffold';Full documentation lives in the upstream repo:
- README: https://github.com/software-mansion/react-native-enriched-markdown
- Text component: docs/TEXT.md
- Input component: docs/INPUT.md
- Style reference: docs/STYLES.md
Versioning
MAJOR.MINOR.PATCH-scaffold.N — the leading MAJOR.MINOR.PATCH tracks the upstream version we forked from, -scaffold.N increments on every internal release.
Example: 0.6.0-scaffold.2 = snapshot taken while upstream sat at 0.6.0, second internal release.
License
MIT — same as upstream. Copyright © Software Mansion. See LICENSE in the tarball.
