Skip to content

Commit 49d8a6d

Browse files
authored
Merge pull request #1 from docsforadobe/change/mkdocs
Change/mkdocs – Convert rst to md
2 parents da407c4 + 9f7c392 commit 49d8a6d

29 files changed

+366
-811
lines changed

.editorconfig

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

.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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
build/
2-
ref/
1+
*.sublime-project
2+
*.sublime-workspace
3+
.DS_Store
4+
.vscode/
5+
site/
6+
venv/

.readthedocs.yaml

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

.vscode/settings.json

Lines changed: 0 additions & 3 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+
an-scripting.docsforadobe.dev

docs/_static/extra.css

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
/* override table width restrictions */
2-
@media screen and (min-width: 767px) {
3-
.wy-table-responsive table td {
4-
/* !important prevents the common CSS stylesheets from overriding
5-
this as on RTD they are loaded after this stylesheet */
6-
white-space: normal !important;
7-
}
8-
9-
.wy-table-responsive {
10-
overflow: visible !important;
11-
}
12-
}

docs/app/app.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Application object
2+
3+
`app`, `an`, `animate`, `flash`, `fl`
4+
5+
#### Description
6+
7+
Provides access to objects and application settings within Animate.
8+
9+
The single global object is always available by its name, `app`, `an`, `animate`, `flash`, or `fl`.
10+
11+
---
12+
13+
## Attributes
14+
15+
### App.version
16+
17+
`app.version`
18+
19+
#### Description
20+
21+
The version of Animate.
22+
23+
#### Type
24+
25+
String; read-only.

docs/app/app.rst

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

0 commit comments

Comments
 (0)