Skip to content

Commit 1bbf270

Browse files
authored
Merge pull request #11 from docsforadobe/change/mkdocs
Convert docs from .rst to .md; consistency pass
2 parents 7684267 + b34bd35 commit 1bbf270

File tree

177 files changed

+18619
-18969
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+18619
-18969
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Override linguist skipping main folder
2+
docs/** -linguist-documentation
3+
docs/** linguist-detectable

.github/workflows/ci.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
permissions:
9+
contents: write
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Configure Git Credentials
18+
run: |
19+
git config user.name github-actions[bot]
20+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
21+
22+
- uses: actions/setup-python@v5
23+
with:
24+
python-version: 3.x
25+
26+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
27+
28+
- uses: actions/cache@v4
29+
with:
30+
key: mkdocs-material-${{ env.cache_id }}
31+
path: .cache
32+
restore-keys: |
33+
mkdocs-material-
34+
35+
- name: Install Python dependencies
36+
uses: py-actions/py-dependency-install@v4
37+
38+
- run: mkdocs gh-deploy --force

.gitignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*.sublime-project
22
*.sublime-workspace
3-
.vscode
4-
build/
5-
docs/_build/
3+
.DS_Store
4+
.vscode/
5+
__pycache__/
6+
site/
7+
venv/

.readthedocs.yaml

-29
This file was deleted.

Makefile

-216
This file was deleted.

README.md

-61
This file was deleted.

docs/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
extendscript.docsforadobe.dev

docs/_global/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.sublime-project
2+
*.sublime-workspace
3+
.DS_Store
4+
.vscode/
5+
__pycache__/
6+
site/
7+
venv/

0 commit comments

Comments
 (0)