Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .remarkrc.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import remarkFrontmatter from 'remark-frontmatter';
import remarkMdx from 'remark-mdx';
import remarkGfm from 'remark-gfm';
import remarkPresetLintRecommended from 'remark-preset-lint-recommended';
import remarkNoInlineCodeFences from './src/plugins/remark-no-inline-code-fences.mjs';
import remarkNoHtmlLinks from './src/plugins/remark-no-html-links.mjs';
Expand All @@ -9,6 +10,7 @@ export default {
plugins: [
remarkFrontmatter,
remarkMdx,
remarkGfm,
remarkPresetLintRecommended,
remarkNoInlineCodeFences,
remarkNoHtmlLinks,
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"prettier-plugin-sentences-per-line": "^0.2.3",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-mdx": "^3.1.1",
"remark-preset-lint-recommended": "^7.0.1",
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Notice that:
when the command runs, like a method body.
- This command will print "Full Speed Baby!" once before commanding
the motor to spin at max speed.
- The `named("Set to Full Throttle")` call is required to create a `Command`.
- The `named("Set to Full Throttle")` call is required to create a `Command`.[^1]
This allows coders to distinguish this command from others when debugging their code.

To change the priority of the command, simply add a `withPriority(int)` call before
Expand Down Expand Up @@ -135,3 +135,5 @@ That means you can run multiple commands in sequence:
```java #commandSequence

```

[^1]: [`NeedsNameBuilderStage.named()`](<https://github.wpilib.org/allwpilib/docs/2027/java/org/wpilib/command3/NeedsNameBuilderStage.html#named(java.lang.String)>)
Loading