Skip to content

Commit af69287

Browse files
authored
Merge pull request #1 from docsforadobe/change/mkdocs
Convert from rst to markdown
2 parents d528a99 + 36fb586 commit af69287

84 files changed

Lines changed: 7509 additions & 7679 deletions

Some content is hidden

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

.gitattributes

Lines changed: 3 additions & 0 deletions
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

Lines changed: 38 additions & 0 deletions
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+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
26+
27+
- uses: actions/cache@v4
28+
with:
29+
key: mkdocs-material-${{ env.cache_id }}
30+
path: .cache
31+
restore-keys: |
32+
mkdocs-material-
33+
- run: >
34+
pip install
35+
mkdocs-material
36+
mkdocs-git-revision-date-localized-plugin
37+
mkdocs-print-site-plugin
38+
- run: mkdocs gh-deploy --force

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.sublime-project
22
*.sublime-workspace
3-
build/
3+
.DS_Store
4+
.vscode/
5+
site/
6+
venv/

.readthedocs.yaml

Lines changed: 0 additions & 29 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 216 deletions
This file was deleted.

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ae-expressions.docsforadobe.dev

docs/_static/extra.css

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +0,0 @@
1-
header#pageheader, footer#pagefooter, div.related, div.document {
2-
max-width: 90%;
3-
}
4-
5-
img {
6-
max-width: 100%;
7-
}
8-
9-
table.docutils {
10-
width: 100%;
11-
}
12-
13-
table.docutils td, table.docutils th {
14-
border-top: 1px solid #aaa;
15-
}
16-
17-
tr:only-child td, tr:only-child th {
18-
border: none;
19-
}
20-
21-
code {
22-
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, sans-serif;
23-
background-color: #eee;
24-
color: #333;
25-
padding: 3px;
26-
font-size: 90%;
27-
}

0 commit comments

Comments
 (0)