Can I hide this ugly scrollbars via some highlight
shortcode option? I don’t see anything in docs that could help me (maybe needed option is undocumented).
{{< highlight yaml "hl_lines=2,linenos=true" >}}
data:
name: "Emily Grace Seville"
age: 22
interests: "DevOps"
{{< /highlight >}}
There is no need in scrollbars because there are no long lines. If there is no such option now for this shortcode what about to add it? It could be named such as
hide_scrollbars
and have 3 values: all
, horizontal
and vertical
.
P.S. Why this shortcode uses positional parameters instead of named ones? It’s better to use named parameters when customization is needed or positional one when no configuration is required.