MDX Guide
Adding CheckBoxβ
tip
<div className="add_checkbox">
<input type="checkbox" id="add_checkbox" name="checkbox" value="My Text" />
My Text
</div>
This will get converted to πβ²:
My Text
caution
OR for better and cleaner codeπ:
<div className="App">
Select your pizza topping:
<div className="topping">
<input type="checkbox" id="topping" name="topping" value="Paneer" />
Paneer
<br />
<input type="checkbox" id="topping" name="topping" value="Mushroom" />
Mushroom
</div>
</div>
Select your pizza topping:
Paneer
Mushroom
Mushroom
Add line highlightingβ
```cpp {6,11-14,16-19}