-
-
Notifications
You must be signed in to change notification settings - Fork 422
[skip changelog] Use relative links for documentation pages #799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Now that the documentation system uses versioning, absolute links can cause the reader to experience an unexpected change in the documentation version being viewed.
@ubidefeo
ubidefeo
Jul 8, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"graphic user interface"
@ubidefeo
ubidefeo
Jul 8, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this generates confusion.
why would selecting the cpu option remove requirement for the port option?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cpu
is not really an great name for the key. Something like "board" would have been better.
If I run this command:
arduino-cli board attach serial:///dev/ttyACM0 HelloWorld
It writes a sketch.json sketch metadata file to the HelloWorld sketch that looks something like:
{ "cpu": { "fqbn": "arduino:avr:mega", "name": "Arduino Mega or Mega 2560", "port": "serial:///dev/ttyACM0" } }
So now if I don't specify a --port
option when running an arduino-cli command with the HelloWorld sketch, the cpu.port
value from sketch.json is automatically used.
@ubidefeo
ubidefeo
Jul 9, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh oh!
There was an error while loading. Please reload this page.
Please check if the PR fulfills these requirements
Documentation fix.
The documentation contains absolute links to internal pages. Now that the documentation system uses versioning, these links can cause the reader to experience an unexpected change in the version of the documentation they are browsing.
All links to internal documentation pages are relative.
No.