Hi
I am trying to import a post from a separate Gitlab repository using the distill::import_post
function. As an example I am using the standard distill example article:
---
title: "Untitled"
description: |
A new article created using the Distill format.
author:
- name: Nora Jones
url: https://example.com/norajones
affiliation: Spacely Sprockets
affiliation_url: https://example.com/spacelysprokets
date: "`r Sys.Date()`"
output: distill::distill_article
---
#```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
#```
Distill is a publication format for scientific and technical writing, native to the web.
Learn more about using Distill for R Markdown at <https://rstudio.github.io/distill>.
The post renders well and the repository also includes the finished html product.
When I try to import the post in my blog, I get the following error message:
Error: Unable to import article (this article is a page within a Distill website rather than a standalone article
Can anyone lead me in the right direction regarding this error?
Best regards
Julian