Skip to content

Commit

Permalink
Fix some more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
subhramit authored Sep 16, 2024
1 parent 1b8a92e commit 2ed387c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/code-howtos/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ What's strange (mostly an IntelliJ bug): Regardless of CLI or GUI, These changes

For `csl-styles`:

```
```BASH
git merge origin/main
git checkout main -- src/main/resources/csl-styles
... git commit ...
Expand All @@ -109,13 +109,13 @@ And similarly for `csl-locales` or `abbrv.jabref.org`.

1. Edit `.gitmodules`: comment out `ignore = all` (for the respective submodules you are trying to reset)

```
```JAVA
# ignore = all
```

2. `cd` into the changed submodules directory (lets say `csl-styles` was changed):

Check failure on line 116 in docs/code-howtos/faq.md

View workflow job for this annotation

GitHub Actions / Markdown

Ordered list item prefix

docs/code-howtos/faq.md:116:1 MD029/ol-prefix Ordered list item prefix [Expected: 1; Actual: 2; Style: 1/1/1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md029.md

```
```BASH
$ cd src/main/resources/csl-styles

Check failure on line 119 in docs/code-howtos/faq.md

View workflow job for this annotation

GitHub Actions / Markdown

Dollar signs used before commands without showing output

docs/code-howtos/faq.md:119:1 MD014/commands-show-output Dollar signs used before commands without showing output [Context: "$ cd src/main/resources/csl-st..."] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md014.md
```

Expand All @@ -125,7 +125,7 @@ Here, in the case of `csl-styles`, it is `4e0902d`.

4. Checkout the commit:

Check failure on line 126 in docs/code-howtos/faq.md

View workflow job for this annotation

GitHub Actions / Markdown

Ordered list item prefix

docs/code-howtos/faq.md:126:1 MD029/ol-prefix Ordered list item prefix [Expected: 2; Actual: 4; Style: 1/2/3] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md029.md

```
```BASH
$ git checkout 4e0902d

Check failure on line 129 in docs/code-howtos/faq.md

View workflow job for this annotation

GitHub Actions / Markdown

Dollar signs used before commands without showing output

docs/code-howtos/faq.md:129:1 MD014/commands-show-output Dollar signs used before commands without showing output [Context: "$ git checkout 4e0902d"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md014.md
```

Expand Down

0 comments on commit 2ed387c

Please sign in to comment.