There are some variables like author_name in node.html.twig of Drupal 8. {{ author_name }} will print something like below:
<div><span><span>Basic</span></span></div> I tried using codes like below: {{ author_name.0 }} plan to print: Basic or {{ author_name|field_value }} plan to print: Basic
Above codes NOT work. How can I achieve above result?