Skip to content

Commit 230d770

Browse files
committed
Fix indent
1 parent 7f3228c commit 230d770

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

docs/_demo/css-testing-ground.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
!!! note
1010
Each column here will inherently wrap in a bad way.
1111

12-
- Code selectors will wrap to the next line, as well long text
13-
- Goal: find a good CSS method to fix the wrapping
12+
- Code selectors will wrap to the next line, as well long text
13+
- Goal: find a good CSS method to fix the wrapping
1414

1515
### 3 columns with code wrap issues in two of them
1616

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ hide:
88
Quick links to a variety of extensibility resources.
99

1010
<div id="filterButtons">
11-
<div id="filterBtnsTags"></div>
12-
<div id="filterBtnsApps"></div>
11+
<div id="filterBtnsTags"></div>
12+
<div id="filterBtnsApps"></div>
1313
</div>
1414

1515
<div id="links" class="grid cards">
16-
<ul id="linklist" />
16+
<ul id="linklist" />
1717
</div>
1818

1919
!!! info

docs/updating-legacy-docs/converting-rst-to-md.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ Once the work is done, submit a PR to merge it into the main branch.
6161
```
6262
- This will generate .md files within `./build/markdown`
6363
2. We want to replace all of the .rst files with the .md files, *however* if we simply delete the .rst and add the .md we will lose all of the git history!
64-
- To get around this, we're going to first *rename* all of the .rst files to .md, and *then* overwrite the "fake" renamed .md files with the converted .md files
64+
- To get around this, we're going to first *rename* all of the .rst files to .md, and *then* overwrite the "fake" renamed .md files with the converted .md files
6565
3. Using your renamer tool of choice, rename all .rst files in docs/ to the .md extension
6666
4. **Commit this rename change!**
67-
- Be careful not to commit anything in `./build/`, as we don't want these in the repo (yet)
67+
- Be careful not to commit anything in `./build/`, as we don't want these in the repo (yet)
6868
5. Now, overwrite all `./docs/` .md files with those from `./build/markdown/`
6969
6. Delete the `./build/` folder, as it won't be needed
7070
7. Rename `./docs/index.md` to `./docs/_nav.md`
71-
- This is a temporary process that we'll resolve later
72-
- It needs to be rewritten in a different format, and moved into `./mkdocs.yml`, with this file deleted
71+
- This is a temporary process that we'll resolve later
72+
- It needs to be rewritten in a different format, and moved into `./mkdocs.yml`, with this file deleted
7373
8. **Commit this overwrite change!**
74-
- This solidifies the history, at which point we can start cleanup
74+
- This solidifies the history, at which point we can start cleanup
7575

7676
---
7777

@@ -147,13 +147,13 @@ When finished, delete `./docs/_nav.md`.
147147
- `[CharacterRange.pasteFrom()](../text/characterrange.md#characterrange-pastefrom)` to
148148
- `[CharacterRange.pasteFrom()](../text/characterrange.md#characterrangepastefrom)`
149149
- This regex search can help, but fails when the link is also a header (see changelog):
150-
- `(?:#)(.*?)-(.*?)(?:\))` => `#$1$2)`
151-
- *Note: this also fails for any page that uses hyphens in page names, which is... most of them*
150+
- `(?:#)(.*?)-(.*?)(?:\))` => `#$1$2)`
151+
- *Note: this also fails for any page that uses hyphens in page names, which is... most of them*
152152
2. Search for anchored links to the top-level page & replace with direct page link, i.e.
153153
- `[Settings object](../other/settings.md#settings)` to
154154
- `[Settings object](../other/settings.md)`
155155
- This regex search / replace can help:
156-
- `(.*)\.md#(\1)\)` => `$1.md)`
156+
- `(.*)\.md#(\1)\)` => `$1.md)`
157157
3. Search for empty in-page links and replace them with the proper format, i.e.
158158
- `[app.watchFolder()]()` to
159159
- `[app.watchFolder()](#appwatchfolder)`
@@ -222,7 +222,7 @@ See [this repo issue](https://github.com/docsforadobe/docsforadobe.dev/issues/7)
222222
- Check that images are properly linked to the root `./docs/_static` folder
223223
- Value ranges should be formatted as: `` `[0.0..10800.0]` `` (surrounded by backticks, two periods between min and max)
224224
- Sort class properties into "Attributes" and "Methods"
225-
- Alphabetically sort methods and attributes
225+
- Alphabetically sort methods and attributes
226226
- Inline doublespace
227227
```regexp
228228
(?<![\n\r\| ])( ){2,}(?![ \|])

0 commit comments

Comments
 (0)