All terms defined with glossary
(since the last call to glossary_reset
) are added to a list, which this function displays using kable (or outputs as a data frame).
Examples
# \donttest{
glossary_reset()
# add a definition to the table
glossary("term", def = "definition", path = NULL)
#> [1] "<a class='glossary'>term<span class='def'>definition</span></a>"
glossary_table() # show table as kable
#> <table class="table" style="margin-left: auto; margin-right: auto;">
#> <thead>
#> <tr>
#> <th style="text-align:left;"> term </th>
#> <th style="text-align:left;"> definition </th>
#> </tr>
#> </thead>
#> <tbody>
#> <tr>
#> <td style="text-align:left;"> term </td>
#> <td style="text-align:left;"> definition </td>
#> </tr>
#> </tbody>
#> </table>
glossary_table(FALSE) # or as a data frame
#> term definition
#> term term definition
# }