From 88c750f8108f621335b849040a2941cd77352306 Mon Sep 17 00:00:00 2001 From: Yihui Xie Date: Sun, 8 Sep 2024 19:08:59 -0700 Subject: [PATCH] start the next version --- DESCRIPTION | 8 ++++---- NEWS.md | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index fd8f323..75114c6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,21 +1,21 @@ Package: litedown Type: Package Title: A Lightweight Version of R Markdown -Version: 0.2 +Version: 0.2.1 Authors@R: c( person("Yihui", "Xie", role = c("aut", "cre"), email = "xie@yihui.name", comment = c(ORCID = "0000-0003-0645-5666")), person() ) Description: Render R Markdown to Markdown (without using 'knitr'), and Markdown - to lightweight HTML/LaTeX documents with the 'commonmark' package (instead + to lightweight HTML or 'LaTeX' documents with the 'commonmark' package (instead of 'Pandoc'). Some missing Markdown features in 'commonmark' are also - supported, such as raw HTML/LaTeX blocks, LaTeX math, superscripts, + supported, such as raw HTML or 'LaTeX' blocks, 'LaTeX' math, superscripts, subscripts, footnotes, element attributes, and appendices, but not all 'Pandoc' Markdown features are (or will be) supported. With additional JavaScript and CSS, you can also create HTML slides and articles. This package can be viewed as a trimmed-down version of R Markdown and 'knitr'. It does not aim at rich Markdown features or a large variety of - output formats (the primary formats are HTML and LaTeX). Book and website + output formats (the primary formats are HTML and 'LaTeX'). Book and website projects of multiple input documents are also supported. Depends: R (>= 3.2.0) Imports: diff --git a/NEWS.md b/NEWS.md index c5931d5..e28bcf0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +# CHANGES IN litedown VERSION 0.3 + + # CHANGES IN litedown VERSION 0.2 - A data frame (or matrix/tibble) wrapped in `I()` is fully printed to a table now by default. Without `I()`, data objects are truncated to 10 rows by default when printing to tables.