Markdown Overview Buttons Tabs Footnotes Collapse ToC Navigation Formula Page-Specific Meta Custom Components
If a line in a code-snippet has the syntax --> hint text
, then the hint text
will
be displayed on a hint-box when the line is hovered (the cursor is upon it):
1link```cpp
2linkvoid func() { // --> this function does nothing
3link}
4link```
1link```js
2linkfunction func() { /* --> this function does nothing */
3link}
4link```
1link```python
2linkdef func(): # --> this function does nothing
3link pass
4link```
1link```html
2link<div hidden></div> <!--> this displays nothing -->
3link```
1linkvoid func() { // --> this function does nothing
2link}
1linkfunction func() { /* --> this function does nothing */
2link}
1linkdef func(): # --> this function does nothing
2link pass
1link<div hidden></div> <!--> this displays nothing -->
This feature is currently only supported in languages where one of the following comment syntaxes is valid:
1link// single-line comment
1link/* multi line comment */
1link# comment starting with a hash
1link<!-- HTML style comment -->