Feature: Simple site building I want to be able to build a site Scenario: Simple site Given I have a "_config.yml" file with content: """ markdown: kramdown plugins: - jekyll-chatgpt-translate chatgpt-translate: source: en layout: translated targets: - language: cn permalink: :year-:month-:day-:title-chinese.html layout: chinese-translated - language: fr permalink: :year/:title-french.html """ And I have a "_layouts/default.html" file with content: """ {{ content }} """ And I have a "_layouts/chinese-translated.html" file with content: """ Chinese: {{ content }} """ And I have a "_posts/2023-01-01-hello.md" file with content: """ --- layout: default --- Hello, world! """ Then I build Jekyll site Then File "_site/2023/01/01/hello.html" exists Then File "_site/2023-01-01-Hello-chinese.html" exists Then File "_site/2023/Hello-french.html" exists And Exit code is zero