1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

refactor: md -> mdx

This commit is contained in:
Pete Davison
2024-03-19 19:48:46 +00:00
parent 97cf02872f
commit 5ab9329128
21 changed files with 26 additions and 26 deletions

View File

@@ -147,7 +147,7 @@ If you have questions, feel free to ask them in the `#help` forum channel on our
--- ---
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[task]: https://github.com/go-task/task [task]: https://github.com/go-task/task
[vscode-task]: https://github.com/go-task/vscode-task [vscode-task]: https://github.com/go-task/vscode-task
[go]: https://go.dev [go]: https://go.dev
@@ -164,4 +164,4 @@ If you have questions, feel free to ask them in the `#help` forum channel on our
[discord-server]: https://discord.gg/6TY36E39UK [discord-server]: https://discord.gg/6TY36E39UK
[discussion]: https://github.com/go-task/task/discussions [discussion]: https://github.com/go-task/task/discussions
[conventional-commits]: https://www.conventionalcommits.org [conventional-commits]: https://www.conventionalcommits.org
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -26,8 +26,8 @@ main branch. To use a more recent version of Task, you will need to ensure that
your Taskfile uses the version 3 schema instead. A list of changes between your Taskfile uses the version 3 schema instead. A list of changes between
version 2 and version 3 are available in the [Task v3 Release Notes][v3.0.0]. version 2 and version 3 are available in the [Task v3 Release Notes][v3.0.0].
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[v3.0.0]: https://github.com/go-task/task/releases/tag/v3.0.0 [v3.0.0]: https://github.com/go-task/task/releases/tag/v3.0.0
[v3.33.0]: https://github.com/go-task/task/releases/tag/v3.33.0 [v3.33.0]: https://github.com/go-task/task/releases/tag/v3.33.0
[deprecation-notice]: https://github.com/go-task/task/issues/1197 [deprecation-notice]: https://github.com/go-task/task/issues/1197
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -340,7 +340,7 @@ When looping over a map we also make an additional `{{.KEY}}` variable availabe
that holds the string value of the map key. Remember that maps are unordered, so that holds the string value of the map key. Remember that maps are unordered, so
the order in which the items are looped over is random. the order in which the items are looped over is random.
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[enabling-experiments]: /experiments/#enabling-experiments [enabling-experiments]: /experiments/#enabling-experiments
[slim-sprig]: https://go-task.github.io/slim-sprig/ [slim-sprig]: https://go-task.github.io/slim-sprig/
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -44,6 +44,6 @@ should replace all uses of the `--force` flag with `--force-all`. Alternatively,
if you want to adopt the new behavior, you can continue to use the `--force` if you want to adopt the new behavior, you can continue to use the `--force`
flag as you do now! flag as you do now!
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[enabling-experiments]: /experiments/#enabling-experiments [enabling-experiments]: /experiments/#enabling-experiments
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -98,7 +98,7 @@ and look for a cached copy instead. This timeout can be configured by setting
the `--timeout` flag and specifying a duration. For example, `--timeout 5s` will the `--timeout` flag and specifying a duration. For example, `--timeout 5s` will
set the timeout to 5 seconds. set the timeout to 5 seconds.
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[enabling-experiments]: /experiments/#enabling-experiments [enabling-experiments]: /experiments/#enabling-experiments
[man-in-the-middle-attacks]: https://en.wikipedia.org/wiki/Man-in-the-middle_attack [man-in-the-middle-attacks]: https://en.wikipedia.org/wiki/Man-in-the-middle_attack
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -37,6 +37,6 @@ information.
\{Short explanation of how users should migrate to the new behavior\} \{Short explanation of how users should migrate to the new behavior\}
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[enabling-experiments]: /experiments/#enabling-experiments [enabling-experiments]: /experiments/#enabling-experiments
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -95,7 +95,7 @@ this work. Constructive comments and contributions are very welcome!
- [mvdan/sh#93](https://github.com/mvdan/sh/issues/93) - [mvdan/sh#93](https://github.com/mvdan/sh/issues/93)
- [mvdan/sh#97](https://github.com/mvdan/sh/issues/97) - [mvdan/sh#97](https://github.com/mvdan/sh/issues/97)
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[git-bash]: https://gitforwindows.org/ [git-bash]: https://gitforwindows.org/
[wsl]: https://learn.microsoft.com/en-us/windows/wsl/install [wsl]: https://learn.microsoft.com/en-us/windows/wsl/install
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -290,7 +290,7 @@ Add the line and save the file:
Invoke-Expression -Command path/to/task.ps1 Invoke-Expression -Command path/to/task.ps1
``` ```
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[go]: https://golang.org/ [go]: https://golang.org/
[snapcraft]: https://snapcraft.io/task [snapcraft]: https://snapcraft.io/task
[homebrew]: https://brew.sh/ [homebrew]: https://brew.sh/
@@ -300,4 +300,4 @@ Invoke-Expression -Command path/to/task.ps1
[choco]: https://chocolatey.org/ [choco]: https://chocolatey.org/
[scoop]: https://scoop.sh/ [scoop]: https://scoop.sh/
[tea]: https://tea.xyz/ [tea]: https://tea.xyz/
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -50,7 +50,7 @@ guide to check the full schema documentation and Task features.
of files haven't changed since last run (based either on its timestamp or of files haven't changed since last run (based either on its timestamp or
content). content).
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[make]: https://www.gnu.org/software/make/ [make]: https://www.gnu.org/software/make/
[go]: https://go.dev/ [go]: https://go.dev/
[yaml]: http://yaml.org/ [yaml]: http://yaml.org/
@@ -58,4 +58,4 @@ guide to check the full schema documentation and Task features.
[snapcraft]: https://snapcraft.io/ [snapcraft]: https://snapcraft.io/
[scoop]: https://scoop.sh/ [scoop]: https://scoop.sh/
[sh]: https://github.com/mvdan/sh [sh]: https://github.com/mvdan/sh
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -61,7 +61,7 @@ take care of updating versions there by editing
[this file](https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/development/tools/go-task/default.nix). [this file](https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/development/tools/go-task/default.nix).
If you think its Task version is outdated, open an issue to let us know. If you think its Task version is outdated, open an issue to let us know.
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[goreleaser]: https://goreleaser.com/ [goreleaser]: https://goreleaser.com/
[homebrewtap]: https://github.com/go-task/homebrew-tap [homebrewtap]: https://github.com/go-task/homebrew-tap
[gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb [gotaskrb]: https://github.com/go-task/homebrew-tap/blob/main/Formula/go-task.rb
@@ -69,4 +69,4 @@ If you think its Task version is outdated, open an issue to let us know.
[snappackage]: https://github.com/go-task/snap [snappackage]: https://github.com/go-task/snap
[snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2 [snapcraftyaml]: https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml#L2
[snapcraftdashboard]: https://snapcraft.io/task/releases [snapcraftdashboard]: https://snapcraft.io/task/releases
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -255,9 +255,9 @@ The variable priority order was also different:
3. Task variables 3. Task variables
4. `Taskvars.yml` variables 4. `Taskvars.yml` variables
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[deprecate-version-2-schema]: /deprecations/version-2-schema/ [deprecate-version-2-schema]: /deprecations/version-2-schema/
[output]: /usage#output-syntax [output]: /usage#output-syntax
[ignore_errors]: /usage#ignore-errors [ignore_errors]: /usage#ignore-errors
[includes]: /usage#including-other-taskfiles [includes]: /usage#including-other-taskfiles
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -16,7 +16,7 @@ translations, please ask for access on the [#translations channel on our Discord
server][discord]. If a given language is not being shown to Crowdin yet, just server][discord]. If a given language is not being shown to Crowdin yet, just
ask and we can configure it. ask and we can configure it.
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[crowdin]: https://crowdin.com/project/taskfile [crowdin]: https://crowdin.com/project/taskfile
[discord]: https://discord.gg/6TY36E39UK [discord]: https://discord.gg/6TY36E39UK
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}

View File

@@ -1954,6 +1954,6 @@ if called by another task, either directly or as a dependency.
::: :::
<!-- prettier-ignore-start --> {/* prettier-ignore-start */}
[gotemplate]: https://golang.org/pkg/text/template/ [gotemplate]: https://golang.org/pkg/text/template/
<!-- prettier-ignore-end --> {/* prettier-ignore-end */}