Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: jekylldown
Title: Create, Build and Serve 'Jekyll' Websites from 'R Markdown' and
'Quarto'
Version: 0.3.3
Version: 0.3.4
Authors@R:
person("Allan", "Quadros", email = "allanvcq@gmail.com",
role = c("aut", "cre"))
Expand All @@ -17,7 +17,6 @@ Description: Do for 'Jekyll' what 'blogdown' does for 'Hugo': create sites
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Imports:
cli,
fs,
Expand All @@ -37,3 +36,4 @@ Config/testthat/edition: 3
SystemRequirements: Ruby (>= 3.0), jekyll, bundler
URL: https://github.com/allanvc/jekylldown
BugReports: https://github.com/allanvc/jekylldown/issues
Config/roxygen2/version: 8.1.0
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(add_css)
export(add_feed)
export(add_footer_credit)
export(add_mathjax)
export(build_site)
Expand All @@ -22,3 +23,4 @@ export(set_theme_skin)
export(set_theme_style)
export(stop_server)
export(use_pages_workflow)
export(use_r_bloggers)
21 changes: 21 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# jekylldown 0.3.4

* New `add_feed()`: renders the site's Atom feeds from a site-level copy
of jekyll-feed's template (`_includes/atom-feed.xml`), patched so that
al-folio's `title: blank` convention yields the author's full name as
the feed title -- the plugin alone printed the literal word "blank".
Optional per-category feeds (`feed/<category>.xml`, full text, only
the posts carrying that category) on any theme. The template is taken
from the jekyll-feed gem installed for the site (the version pinned in
`Gemfile.lock`), falling back to that version's tag on GitHub and then
to a copy shipped with the package, and the include records its
provenance so a later gem upgrade regenerates it. The patch targets one
anchor line and aborts with a clear message if upstream moves it.
* New `use_r_bloggers()`: the site side of an R-Bloggers submission in
one call -- an R-only feed via `add_feed(category = "R")`, the link
back to R-Bloggers under the blog header on al-folio (a snippet to
place on other themes), and the feed URL to submit.
* `new_site(theme = "al-folio")` and, through it, `migrate_hugo()` call
`add_feed()` so fresh al-folio sites never publish a feed titled
"blank".

# jekylldown 0.3.3

* Pandoc-style attributes on links (`[x](u){target="_blank"}`) are now
Expand Down
Loading
Loading