Table output like console

As mentioned in my reply in a similar question, to control the output format of tables in learnr tutorials — to show the tibble as it would be printed in the console, for example — you can set the df_print option in the YAML frontmatter:

---
output:
  learnr::tutorial:
    df_print: default # the learnr default is "paged"
---