--- title: "Column Tests" subtitle: "Testing Bulma Column Functions" author: - name: First Author url: https://rstudio.com extra: - "First Affiliation" - "@tweeter345" - name: Second Author url: https://duckduckgo.com extra: - "Second Affiliation" - "Very Cool Guy" date: '`r strftime(Sys.time(), "%F %T")`' header-links: - name: Github url: https://github.com/gerkelab - name: Home url: https://gerkelab.com bulma: hero: ["info", "bold"] output: bulma::bulma_document editor_options: chunk_output_type: console --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) library(bulma) ``` ## Columns ```r bulma::bulma_columns("first column", "second column", "third column") ``` `r bulma::bulma_columns("first column", "second column", "third column")` ### Setting Gap ```{r} bulma_columns( "First", "Second", "Third", "Fourth", gap = 2 ) ```