Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f033ac6
feat(docs): add docusaurus documentation site
halskiszymon Jul 9, 2026
0bc86dd
docs: add agent guide for the docs site
halskiszymon Jul 9, 2026
5d34310
docs: skeleton (#698)
hejsztynx Jul 15, 2026
eccdc34
Merge branch 'main' into feat/docs
hejsztynx Jul 17, 2026
3c137f8
feat(Docs): Add topbar banner (#701)
Sullyvahnn-v2 Jul 20, 2026
6fa89d2
Merge branch 'main' into feat/docs
hejsztynx Jul 22, 2026
0b04cbc
Merge branch 'main' into feat/docs
hejsztynx Jul 27, 2026
c23f622
docs: fundamentals section (#705)
hejsztynx Aug 11, 2026
6f9c3f3
docs: introduce enriched-html coloring (#718)
hejsztynx Aug 11, 2026
123e44e
docs: project configuration (#712)
hejsztynx Aug 11, 2026
dc439ef
docs: add api reference section (#716)
kacperzolkiewski Aug 12, 2026
241f8e9
docs: miscellaneous section (#723)
hejsztynx Aug 12, 2026
9b1356e
docs: Rich text formatting section (#713)
hejsztynx Aug 12, 2026
0cce5aa
docs: core funtionalities section (#715)
hejsztynx Aug 12, 2026
858a90d
docs: guides section (#717)
hejsztynx Aug 12, 2026
e5fa7a3
docs: htmlStyle for interactive examples components (#719)
hejsztynx Aug 12, 2026
e366d4c
docs: linkup sections (#761)
hejsztynx Aug 12, 2026
1859edc
chore: update repo readme with new docs (#762)
hejsztynx Aug 12, 2026
4544318
docs: update compatibility table (#763)
kacperzolkiewski Aug 13, 2026
d2e933a
Merge remote-tracking branch 'origin/main' into feat/docs
exploIF Aug 13, 2026
9101013
fix: apply copilot review
exploIF Aug 13, 2026
4fbb70e
docs: speed up context menu GIF (#765)
kacperzolkiewski Aug 13, 2026
7172bf5
feat: minimal valid ts setup for docs
exploIF Aug 13, 2026
56a0e04
Merge remote-tracking branch 'origin/feat/docs' into feat/docs
exploIF Aug 13, 2026
142a0d9
fix: failing CI ts
exploIF Aug 13, 2026
2e7294a
docs: context menu demo video (#766)
hejsztynx Aug 13, 2026
612b0c1
docs: enable indexing (#767)
p-malecki Aug 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: docs build

on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs-build.yml'
workflow_dispatch:

jobs:
docs-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Check out
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: |
yarn.lock
docs/yarn.lock

- name: Install library dependencies (local source)
working-directory: ${{ github.workspace }}
run: yarn install --immutable

- name: Install dependencies
run: yarn install --immutable

- name: Typecheck docs
working-directory: ${{ github.workspace }}
run: yarn typecheck:docs

- name: Build docs
run: yarn build
52 changes: 52 additions & 0 deletions .github/workflows/docs-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: docs publish

on:
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/docs-publish.yml'
workflow_dispatch:

jobs:
docs-publish:
if: github.repository == 'software-mansion/react-native-enriched-html'
runs-on: ubuntu-latest
permissions:
contents: write
defaults:
run:
working-directory: docs
steps:
- name: Check out
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: |
yarn.lock
docs/yarn.lock

- name: Install library dependencies (local source)
working-directory: ${{ github.workspace }}
run: yarn install --immutable

- name: Install dependencies
run: yarn install --immutable

- name: Typecheck docs
working-directory: ${{ github.workspace }}
run: yarn typecheck:docs

- name: Build docs
run: yarn build

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/build
branch: gh-pages
220 changes: 0 additions & 220 deletions CONTRIBUTING.md

This file was deleted.

Loading
Loading