docs-content
docs-content copied to clipboard
List intended to be a numbered list wrong on Chrome
https://docs.arduino.cc/tutorials/uno-rev3/board-anatomy
On Chrome and Firefox, each bullet point is showing up as 1, making it hard to interpret.
Issue still present.
This seems to be because of the way it was written in the markdown.
https://github.com/arduino/docs-content/blob/7b5209e548a34b7f5507b3e006217353a064d98e/content/hardware/02.hero/boards/uno-rev3/tutorials/board-anatomy/content.md?plain=1#L12-L30
Here's how that looks like here:
-
- Digital pins Use these pins with digitalRead(), digitalWrite(), and analogWrite(). analogWrite() works only on the pins with the PWM symbol.
-
- Pin 13 LED The only actuator built-in to your board. Besides being a handy target for your first blink sketch, this LED is very useful for debugging.
-
- Power LED Indicates that your Arduino is receiving power. Useful for debugging.
-
- ATmega microcontroller The heart of your board.
-
- Analog in Use these pins with analogRead().
-
- GND and 5V pins Use these pins to provide +5V power and ground to your circuits.
-
- Power connector This is how you power your Arduino when it's not plugged into a USB port for power. Can accept voltages between 7-12V.
-
- TX and RX LEDs These LEDs indicate communication between your Arduino and your computer. Expect them to flicker rapidly during sketch upload as well as during serial communication. Useful for debugging.
-
- USB port Used for powering your Arduino UNO, uploading your sketches to your Arduino, and for communicating with your Arduino sketch (via Serial. println() etc.).
-
- Reset button Resets the ATmega microcontroller.
It seems that if the dashes (-) in front of the numbers were taken out, the issue would probably resolve itself. It is also interesting that the GitHub markdown interpreter renders it readable, but whatever the website is using does not.
@jacobhylen Could you please take a look? 🙏 cc @jhansson-ard