Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| start_details <- function(state,summary){ | |
| sprintf('<details %s>%s',state, summary) | |
| } | |
| end_details <- function(){ | |
| paste('</details>','<br>',sep='\n') | |
| } | |
| body_details <- function(lang,text){ | |
| if(!details_env$device){ | |
| text <- sprintf('\n\n%s\n\n',text) | |
| if(!is.null(lang)) | |
| text <- sprintf('```%s%s```',lang,text) | |
| } | |
| text | |
| } |