├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── possible-bug.yml ├── dependabot.yml ├── opencollective.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── release.yml │ └── scorecard.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cmd.cjs ├── docs ├── coverage.md ├── coverage.njk ├── eleventy.coverage.js └── release-instructions.md ├── eslint.config.js ├── package.json ├── packages └── client │ ├── README.md │ ├── generate-bundle.js │ ├── package.json │ ├── src │ ├── BundleCore.js │ ├── BundleEleventy.js │ ├── BundleI18nPlugin.js │ ├── BundleLiquid.js │ ├── BundleMarkdown.js │ ├── BundleNunjucks.js │ └── shims │ │ ├── process.cjs │ │ └── shim-core.js │ ├── test │ ├── client-core.test.js │ ├── client-eleventy.test.js │ └── shared-tests.js │ ├── update-package-json.js │ └── vitest.config.js ├── scripts ├── release-dryrun.sh └── release.sh ├── src ├── Adapters │ ├── Engines │ │ ├── Liquid.core.js │ │ ├── Liquid.js │ │ ├── Markdown.core.js │ │ ├── Markdown.js │ │ ├── Nunjucks.core.js │ │ └── Nunjucks.js │ ├── Packages │ │ ├── chalk.client.js │ │ ├── chalk.js │ │ ├── inspect.core.js │ │ ├── inspect.js │ │ ├── semver.client.js │ │ ├── semver.js │ │ ├── url.core.js │ │ └── url.js │ ├── getDefaultConfig.core.js │ └── getDefaultConfig.js ├── Benchmark │ ├── Benchmark.js │ ├── BenchmarkGroup.js │ └── BenchmarkManager.js ├── Core.js ├── CoreMinimal.js ├── Data │ ├── ComputedData.js │ ├── ComputedDataProxy.js │ ├── ComputedDataQueue.js │ ├── ComputedDataTemplateString.js │ ├── TemplateData.js │ └── TemplateDataInitialGlobalData.js ├── Eleventy.js ├── EleventyCommonJs.cjs ├── EleventyExtensionMap.js ├── EleventyFiles.js ├── EleventyServe.js ├── Engines │ ├── Custom.js │ ├── FrontMatter │ │ └── JavaScript.js │ ├── Html.js │ ├── JavaScript.js │ ├── Liquid.js │ ├── Markdown.js │ ├── Nunjucks.js │ ├── TemplateEngine.js │ ├── TemplateEngineManager.js │ └── Util │ │ └── ContextAugmenter.js ├── Errors │ ├── DuplicatePermalinkOutputError.js │ ├── EleventyBaseError.js │ ├── EleventyErrorHandler.js │ ├── EleventyErrorUtil.js │ ├── TemplateContentPrematureUseError.js │ ├── TemplateContentUnrenderedTemplateError.js │ └── UsingCircularTemplateContentReferenceError.js ├── EventBus.js ├── FileSystemSearch.js ├── Filters │ ├── GetCollectionItem.js │ ├── GetCollectionItemIndex.js │ ├── GetLocaleCollectionItem.js │ └── Url.js ├── GlobalDependencyMap.js ├── LayoutCache.js ├── Plugins │ ├── HtmlBasePlugin.js │ ├── HtmlRelativeCopyPlugin.js │ ├── I18nPlugin.js │ ├── IdAttributePlugin.js │ ├── InputPathToUrl.js │ ├── Pagination.js │ └── RenderPlugin.js ├── Template.js ├── TemplateBehavior.js ├── TemplateCollection.js ├── TemplateConfig.js ├── TemplateContent.js ├── TemplateFileSlug.js ├── TemplateGlob.js ├── TemplateLayout.js ├── TemplateLayoutPathResolver.js ├── TemplateMap.js ├── TemplatePassthrough.js ├── TemplatePassthroughManager.js ├── TemplatePermalink.js ├── TemplatePreprocessors.js ├── TemplateRender.js ├── TemplateWriter.js ├── UserConfig.js ├── Util │ ├── ArrayUtil.js │ ├── AsyncEventEmitter.js │ ├── Compatibility.js │ ├── ConsoleLogger.js │ ├── DateParse.js │ ├── DirContains.js │ ├── EsmResolver.js │ ├── EsmResolverPortAdapter.core.js │ ├── EsmResolverPortAdapter.js │ ├── EventBusUtil.js │ ├── ExistsCache.js │ ├── FilePathUtil.js │ ├── FileSize.js │ ├── FileSystemManager.js │ ├── GetJavaScriptData.js │ ├── Git.js │ ├── GlobMatcher.client.js │ ├── GlobMatcher.js │ ├── GlobRemap.js │ ├── GlobStripper.js │ ├── HtmlRelativeCopy.js │ ├── HtmlTransformer.js │ ├── ImportJsonSync.js │ ├── IsAsyncFunction.js │ ├── JavaScriptDependencies.core.js │ ├── JavaScriptDependencies.js │ ├── MemoizeFunction.js │ ├── NewLineAdapter.core.js │ ├── NewLineAdapter.js │ ├── Objects │ │ ├── DeepFreeze.js │ │ ├── ObjectFilter.js │ │ ├── ProxyWrap.js │ │ ├── SampleModule.mjs │ │ ├── Sortable.js │ │ └── Unique.js │ ├── PassthroughCopyBehaviorCheck.js │ ├── PathNormalizer.js │ ├── PathPrefixer.js │ ├── Pluralize.js │ ├── ProjectDirectories.js │ ├── ProjectTemplateFormats.js │ ├── PromiseUtil.js │ ├── Require.js │ ├── RequireUtils.core.js │ ├── RequireUtils.js │ ├── ReservedData.js │ ├── ResolvePlugin.client.js │ ├── ResolvePlugin.js │ ├── RetrieveGlobals.client.js │ ├── RetrieveGlobals.core.js │ ├── RetrieveGlobals.js │ ├── SemverCoerce.js │ ├── SetUtil.js │ ├── TemplateDepGraph.js │ ├── TransformsUtil.js │ ├── UrlUtil.js │ ├── importer.client.js │ ├── importer.core.js │ ├── importer.js │ ├── spawn.core.js │ └── spawn.js ├── Watch.js ├── WatchQueue.js ├── WatchTargets.js ├── defaultConfig.js ├── defaultConfigExtended.client.js └── defaultConfigExtended.js ├── test ├── ArrayUtilTest.js ├── BenchmarkTest.js ├── BundlePluginTest.js ├── CompatibilityTest.js ├── ComputedDataProxyTest.js ├── ComputedDataQueueTest.js ├── ComputedDataTemplateStringTest.js ├── ComputedDataTest.js ├── ConsoleLoggerTest.js ├── DependencyGraphTest.js ├── DirContainsTest.js ├── EleventyAddGlobalDataTest.js ├── EleventyErrorHandlerTest.js ├── EleventyErrorUtilTest.js ├── EleventyExtensionMapTest.js ├── EleventyFilesGitIgnoreEleventyIgnoreTest.js ├── EleventyFilesTest.js ├── EleventyImgTransformTest.js ├── EleventyMarkdownTest.js ├── EleventyNunjucksTest.js ├── EleventyServeTest.js ├── EleventyTest-CustomDateParsing.js ├── EleventyTest-PageData.js ├── EleventyTest-Preprocessors.js ├── EleventyTest-Shortcodes.js ├── EleventyTest.js ├── EleventyVirtualTemplatesTest.js ├── ExistsCacheTest.js ├── FileSystemSearchTest.js ├── GetCollectionItemIndexTest.js ├── GetCollectionItemTest.js ├── GlobRemapTest.js ├── GlobStripperTest.js ├── GlobalDependencyMapTest.js ├── HtmlBasePluginTest.js ├── HtmlRelativeCopyTest.js ├── I18nPluginTest.js ├── IdAttributePluginTest.js ├── ImportJsonSyncTest.js ├── InputPathToUrlPluginTest.js ├── Issue3467Test.js ├── Issue3788Test.js ├── Issue3797Test.js ├── Issue3808Test.js ├── Issue3809Test.js ├── Issue3816Test.js ├── Issue3818Test.js ├── Issue3823Test.js ├── Issue3825Test.js ├── Issue3831Test.js ├── Issue3833Test.js ├── Issue3850Test.js ├── Issue3853Test.js ├── Issue3854Test.js ├── Issue3860Test.js ├── Issue3870IncrementalTest.js ├── Issue3870Test.js ├── Issue3875Test.js ├── Issue434Test.js ├── Issue775Test.js ├── JavaScriptDependenciesTest.js ├── JavaScriptFrontMatterTest.js ├── LayoutCacheTest.js ├── LodashTest.js ├── PaginationTest.js ├── PassthroughCopyBehaviorTest.js ├── PathNormalizerTest.js ├── PathPrefixer.js ├── PluralizeTest.js ├── ProjectDirectoriesTest.js ├── ProjectTemplateFormatsTest.js ├── ProxyWrapTest.js ├── ReservedDataTest.js ├── SemverCheckTest.js ├── SortableTest.js ├── TemplateCollectionTest.js ├── TemplateConfigTest.js ├── TemplateDataTest.js ├── TemplateDepGraphTest.js ├── TemplateEngineManagerTest.js ├── TemplateEngineTest.js ├── TemplateFileSlugTest.js ├── TemplateGlobTest.js ├── TemplateLayoutPathResolverTest.js ├── TemplateLayoutTest.js ├── TemplateMapTest-ComputedData.js ├── TemplateMapTest.js ├── TemplatePassthroughManagerTest.js ├── TemplatePassthroughTest.js ├── TemplatePermalinkTest.js ├── TemplateRenderCustomTest.js ├── TemplateRenderHTMLTest.js ├── TemplateRenderJavaScriptTest.js ├── TemplateRenderLiquidTest.js ├── TemplateRenderMarkdownPluginTest.js ├── TemplateRenderMarkdownTest.js ├── TemplateRenderNunjucksTest.js ├── TemplateRenderPluginTest.js ├── TemplateRenderTest.js ├── TemplateTest-CompileOptions.js ├── TemplateTest-ComputedData.js ├── TemplateTest-CustomExtensions.js ├── TemplateTest-DataCascade.js ├── TemplateTest-Dates.js ├── TemplateTest-JavaScript.js ├── TemplateTest.js ├── TemplateTest_Permalink.js ├── TemplateWriterTest.js ├── TestUtilityTest.js ├── TransformsUtilTest.js ├── UrlTest.js ├── UserConfigTest.js ├── UserDataExtensionsTest.js ├── Util │ ├── normalizeNewLines.js │ └── normalizeSeparators.js ├── UtilSetUnionTest.js ├── WatchQueueTest.js ├── WatchTargetsTest.js ├── _getNewTemplateForTests.js ├── _getRenderedTemplates.js ├── _issues │ ├── 0 │ │ ├── content │ │ │ └── index.html │ │ ├── eleventy.config.js │ │ └── issue-0-test.js │ ├── 975 │ │ ├── 975-test.js │ │ ├── another-post.md │ │ ├── index.md │ │ └── post.md │ ├── 2250 │ │ ├── 2250-test.js │ │ ├── javascript.11ty.cjs │ │ ├── liquid.liquid │ │ └── nunjucks.njk │ ├── 3697 │ │ ├── 3697-test.js │ │ └── _data │ │ │ └── folder │ │ │ ├── 0.json │ │ │ └── 3.json │ ├── 3809 │ │ ├── .app │ │ │ ├── .eleventy.js │ │ │ └── _data │ │ │ │ └── app.json │ │ └── index.njk │ ├── 3853 │ │ └── deeper │ │ │ └── index.njk │ ├── 3854 │ │ ├── app │ │ │ ├── .eleventy.js │ │ │ └── index.njk │ │ └── index.njk │ ├── 3896 │ │ ├── eleventy-input-folder │ │ │ ├── 3896.html │ │ │ └── _archive │ │ │ │ └── ignored.html │ │ └── test-files │ │ │ ├── eleventy.config.js │ │ │ └── issue3896-test.js │ └── 3932 │ │ ├── 1 │ │ └── 2025.html │ │ ├── eleventy.config.js │ │ └── issue-3932-test.js ├── _testHelpers.js ├── cmdTest.js ├── file-system-search │ └── file.txt ├── noop │ └── .gitkeep ├── noop2 │ └── .gitkeep ├── proxy-pagination-globaldata │ ├── _data │ │ └── banner.js │ ├── tmpl.liquid │ ├── tmpl2.njk │ └── tmpl4.11ty.js ├── semverCoerceTest.js ├── slugify-filter │ ├── comma.njk │ ├── multibyte.njk │ ├── slug-number.njk │ ├── slug-options.njk │ ├── slugify-number.njk │ ├── slugify-options.njk │ └── test.njk ├── stubs--to │ ├── test.md │ └── test2.liquid ├── stubs-1206 │ ├── page1.njk │ └── page2.njk ├── stubs-1242 │ ├── _data │ │ ├── xyz.dottest.json │ │ └── xyz.dottest │ │ │ └── test.json │ └── empty.md ├── stubs-1325 │ ├── test.11ty.js │ └── test.js ├── stubs-142 │ └── index.njk ├── stubs-1691 │ ├── _data │ │ └── str.txt │ ├── template.11tydata.txt │ └── template.njk ├── stubs-2145 │ ├── _includes │ │ └── layout.njk │ └── test.njk ├── stubs-2167 │ └── paginated.njk ├── stubs-2224 │ └── index.njk ├── stubs-2258-2830-skip-layouts │ ├── _includes │ │ └── layout.njk │ ├── eleventy.config.cjs │ └── style.scss ├── stubs-2258 │ ├── _includes │ │ ├── _code.scss │ │ └── layout.njk │ ├── eleventy.config.cjs │ └── style.scss ├── stubs-2261 │ ├── _includes │ │ └── block.njk │ ├── eleventy.config.js │ └── index.njk ├── stubs-2367 │ ├── _includes │ │ └── layout.liquid │ ├── templateWithLiquidShortcodeMultipleArguments-template2.liquid │ └── templateWithLiquidShortcodeMultipleArguments.liquid ├── stubs-2378 │ └── _data │ │ └── images │ │ ├── dog.jpg │ │ └── dogpng.png ├── stubs-2602 │ └── index.njk ├── stubs-2753 │ ├── _data │ │ └── global.js │ ├── page1.njk │ └── page2.njk ├── stubs-2790 │ └── page.11ty.cjs ├── stubs-2851 │ ├── content.njk │ └── paginated.njk ├── stubs-3013 │ ├── html │ │ ├── _data │ │ │ └── books.json │ │ ├── _includes │ │ │ └── base.html │ │ └── book.html │ ├── liquid │ │ ├── _data │ │ │ └── books.json │ │ ├── _includes │ │ │ └── base.liquid │ │ └── book.liquid │ ├── md │ │ ├── _data │ │ │ └── books.json │ │ ├── _includes │ │ │ └── base.md │ │ └── book.md │ └── njk │ │ ├── _data │ │ └── books.json │ │ ├── _includes │ │ └── base.njk │ │ └── book.njk ├── stubs-3285 │ └── src │ │ └── scripts │ │ └── hello-world.js ├── stubs-337 │ ├── data │ │ └── xyz.json │ └── src │ │ └── empty.md ├── stubs-3807 │ ├── Issue3807test.js │ ├── _layouts │ │ ├── base.html │ │ └── home.html │ ├── eleventy.config.js │ └── index.md ├── stubs-3810 │ ├── _includes │ │ └── promo.njk │ ├── eleventy.config.js │ └── index.md ├── stubs-403 │ ├── .eleventyignore │ ├── _includes │ │ └── include.liquid │ └── template.liquid ├── stubs-408-sass │ ├── _code.scss │ └── style.scss ├── stubs-413 │ └── date-frontmatter.md ├── stubs-434 │ └── _includes │ │ ├── macros-filter.njk │ │ └── macros.njk ├── stubs-475 │ ├── _includes │ │ └── layout.njk │ └── transform-layout │ │ └── transform-layout.njk ├── stubs-630 │ ├── _data │ │ ├── globalData0.cjs │ │ ├── globalData1.cjs │ │ ├── globalData2.json │ │ ├── globalData3.yaml │ │ ├── globalData4.nosj │ │ ├── mergingGlobalData.cjs │ │ ├── mergingGlobalData.js │ │ ├── mergingGlobalData.json │ │ ├── mergingGlobalData.nosj │ │ ├── mergingGlobalData.yaml │ │ └── subdir │ │ │ └── globalDataSubdir.yaml │ └── component-yaml │ │ ├── component.11tydata.cjs │ │ ├── component.11tydata.json │ │ ├── component.11tydata.nosj │ │ ├── component.11tydata.yaml │ │ ├── component.json │ │ ├── component.njk │ │ └── component.yaml ├── stubs-670 │ ├── content.njk │ └── index.njk ├── stubs-919 │ ├── test.11tydata.cjs │ ├── test.njk │ └── test2.njk ├── stubs-absolute │ └── test.md ├── stubs-addglobaldata-noop │ └── test.txt ├── stubs-addglobaldata │ └── test.liquid ├── stubs-autocopy │ ├── .gitkeep │ ├── possum.jpg │ └── possum.png ├── stubs-base-case-sens │ └── index.njk ├── stubs-base │ └── index.njk ├── stubs-circular-layout │ └── _includes │ │ ├── layout-cycle-a.njk │ │ ├── layout-cycle-b.njk │ │ ├── layout-cycle-c.njk │ │ └── layout-cycle-self.njk ├── stubs-computed-array │ └── test.liquid ├── stubs-computed-collections-filter │ ├── collections.njk │ └── dog.njk ├── stubs-computed-collections │ ├── collections.njk │ └── dog.njk ├── stubs-computed-dirdata │ └── dir │ │ ├── dir.11tydata.cjs │ │ ├── first.11ty.cjs │ │ └── second.11ty.cjs ├── stubs-computed-global │ ├── _data │ │ └── eleventyComputed.cjs │ └── intermix.njk ├── stubs-computed-pagination │ ├── child.11ty.cjs │ └── paginated.njk ├── stubs-computed-symbolparse │ ├── test.liquid │ └── test.njk ├── stubs-custom-extension │ └── test.js1 ├── stubs-data-cascade │ ├── global-versus-layout │ │ ├── _data │ │ │ └── cascade.cjs │ │ ├── _includes │ │ │ └── base.njk │ │ └── test.njk │ ├── layout-data-files │ │ ├── _includes │ │ │ └── base.njk │ │ ├── test.11tydata.cjs │ │ └── test.njk │ ├── layout-versus-dirdatafile │ │ └── src │ │ │ ├── _includes │ │ │ └── base.njk │ │ │ ├── src.11tydata.cjs │ │ │ └── test.njk │ └── layout-versus-tmpldatafile │ │ ├── _includes │ │ └── base.njk │ │ ├── test.11tydata.cjs │ │ └── test.njk ├── stubs-data-esm │ └── _data │ │ ├── commonjs.cjs │ │ └── module.mjs ├── stubs-dependency-tree │ ├── child.cjs │ ├── grandchild.cjs │ └── index.cjs ├── stubs-empty-json-data │ └── _data │ │ └── empty.json ├── stubs-empty │ └── .gitkeep ├── stubs-fancyjs │ ├── test.11ty.tsx │ └── test.mdx ├── stubs-global-data-config-api-nested │ └── _data │ │ └── deep.cjs ├── stubs-global-data-config-api │ └── empty.txt ├── stubs-i18n │ ├── en-us │ │ └── index.11ty.cjs │ ├── en │ │ └── index.liquid │ ├── es │ │ └── index.njk │ └── non-lang-file.njk ├── stubs-img-transform │ ├── ignored.md │ ├── missing-alt.md │ ├── multiple.md │ ├── possum.png │ └── single.md ├── stubs-incremental │ └── layout-chain │ │ ├── _includes │ │ ├── base.njk │ │ └── parent.njk │ │ └── test.njk ├── stubs-layout-cache │ ├── _includes │ │ ├── layout.liquid │ │ └── layout.njk │ ├── test.liquid │ └── test.njk ├── stubs-layouts-event │ ├── _includes │ │ ├── first.liquid │ │ ├── second.liquid │ │ └── third.liquid │ └── page.md ├── stubs-njk-async │ └── _includes │ │ └── loop.njk ├── stubs-pagination-computed-quotes-njk │ ├── post.njk │ └── test.njk ├── stubs-pagination-computed-quotes │ ├── post.liquid │ └── test.liquid ├── stubs-pathtourl │ ├── css.njk │ ├── filter.njk │ ├── tmpl.njk │ └── transform.njk ├── stubs-render-plugin │ ├── 11tyjs-file-override.njk │ ├── 11tyjs-file.njk │ ├── 11tyjs.liquid │ ├── _includes │ │ ├── frontmatter.liquid │ │ ├── include-js.txt │ │ ├── include.11ty.cjs │ │ ├── include.liquid │ │ └── include.njk │ ├── bad-data.njk │ ├── capture-liquid.njk │ ├── capture-njk.liquid │ ├── data-no-templatelang.liquid │ ├── false.liquid │ ├── liquid-direct.njk │ ├── liquid-eleventy.njk │ ├── liquid-global.njk │ ├── liquid-md.11ty.cjs │ ├── liquid-md.liquid │ ├── liquid-page.liquid │ ├── liquid-page.njk │ ├── liquid.njk │ ├── md.liquid │ ├── njk-eleventy.liquid │ ├── njk-file-not-exist.liquid │ ├── njk-file.liquid │ ├── njk-file.njk │ ├── njk-page.liquid │ ├── nunjucks-frontmatter.njk │ ├── nunjucks-global.liquid │ ├── nunjucks.11ty.cjs │ ├── nunjucks.liquid │ ├── using-frontmatter.liquid │ └── vue.liquid ├── stubs-virtual-nowrite │ └── .gitkeep ├── stubs-virtual │ ├── .gitkeep │ └── eleventy.config.js ├── stubs │ ├── .eleventyignore │ ├── 2016-02-01-permalinkdate.liquid │ ├── _data │ │ ├── globalData.json │ │ ├── globalData2.cjs │ │ ├── globalDataFn.js │ │ ├── globalDataFnCJS.cjs │ │ ├── subdir │ │ │ └── testDataSubdir.json │ │ ├── testData.json │ │ └── testDataLiquid.json │ ├── _includes │ │ ├── base.njk │ │ ├── custom-filter.liquid │ │ ├── default.liquid │ │ ├── defaultLayout.liquid │ │ ├── defaultLayoutLayoutContent.liquid │ │ ├── imports.njk │ │ ├── included-data.html │ │ ├── included-relative.njk │ │ ├── included.html │ │ ├── included.liquid │ │ ├── included.njk │ │ ├── included.nunj │ │ ├── layout-a.liquid │ │ ├── layout-b.liquid │ │ ├── layoutLiquid.liquid │ │ ├── layouts │ │ │ ├── div-wrapper-layout.njk │ │ │ ├── engineOverrides.njk │ │ │ ├── engineOverridesMd.njk │ │ │ ├── inasubdir.njk │ │ │ ├── issue-115.liquid │ │ │ ├── layout-contentdump.njk │ │ │ ├── layout-inherit-a.njk │ │ │ ├── layout-inherit-b.njk │ │ │ ├── layout-inherit-c.njk │ │ │ ├── post.liquid │ │ │ └── templateMapCollection.njk │ │ ├── multiple.liquid │ │ ├── multiple.md │ │ ├── mylocallayout.njk │ │ ├── permalink-data-layout.njk │ │ ├── permalink-in-layout │ │ │ ├── layout-fileslug.liquid │ │ │ └── layout.liquid │ │ ├── scopeleak.liquid │ │ ├── subfolder │ │ │ ├── included.html │ │ │ ├── included.liquid │ │ │ └── included.nunj │ │ └── test.js │ ├── _layouts │ │ └── layoutsdefault.liquid │ ├── add-extension │ │ ├── test.njk │ │ └── test.txt │ ├── broken-config.cjs │ ├── buffer.11ty.cjs │ ├── cfg-directories-export-cjs │ │ ├── eleventy.config.cjs │ │ └── src │ │ │ └── .gitkeep │ ├── cfg-directories-export │ │ ├── eleventy.config.js │ │ └── src │ │ │ └── .gitkeep │ ├── class-async-data-fn.11ty.cjs │ ├── class-async-filter.11ty.cjs │ ├── class-async.11ty.cjs │ ├── class-buffer.11ty.cjs │ ├── class-data-filter.11ty.cjs │ ├── class-data-fn-filter.11ty.cjs │ ├── class-data-fn-shorthand.11ty.cjs │ ├── class-data-fn.11ty.cjs │ ├── class-data-permalink-async-fn.11ty.cjs │ ├── class-data-permalink-buffer.11ty.cjs │ ├── class-data-permalink-fn-buffer.11ty.cjs │ ├── class-data-permalink-fn-filter.11ty.cjs │ ├── class-data-permalink-fn.11ty.cjs │ ├── class-data-permalink.11ty.cjs │ ├── class-data.11ty.cjs │ ├── class-filter.11ty.cjs │ ├── class-fns-has-page.11ty.cjs │ ├── class-fns.11ty.cjs │ ├── class-norender.11ty.cjs │ ├── class-with-dep-upstream.js │ ├── class-with-dep.11ty.cjs │ ├── class.11ty.cjs │ ├── classfields-data.11ty.cjs │ ├── cmd-help-processing │ │ └── _data │ │ │ └── test.js │ ├── collection-layout-wrap.njk │ ├── collection-layout │ │ ├── _includes │ │ │ └── layout.liquid │ │ ├── dog1.liquid │ │ └── template.liquid │ ├── collection-slug │ │ ├── dog1.njk │ │ └── template.njk │ ├── collection-template │ │ ├── _includes │ │ │ └── layout.liquid │ │ ├── dog1.liquid │ │ └── template.liquid │ ├── collection │ │ ├── test1.md │ │ ├── test10.md │ │ ├── test2.md │ │ ├── test3.md │ │ ├── test4.md │ │ ├── test5.md │ │ ├── test6.html │ │ ├── test7.njk │ │ ├── test8.md │ │ └── test9.md │ ├── collection2 │ │ ├── test1.md │ │ └── test2.md │ ├── component-async │ │ ├── component.11tydata.cjs │ │ ├── component.11tydata.js │ │ └── component.njk │ ├── component │ │ ├── component.11tydata.cjs │ │ ├── component.11tydata.js │ │ ├── component.11tydata.json │ │ ├── component.json │ │ └── component.njk │ ├── config-deps-upstream.cjs │ ├── config-deps.cjs │ ├── config-empty-pathprefix.cjs │ ├── config-promise.js │ ├── config.cjs │ ├── custom-extension-no-permalink.txt │ ├── custom-extension.txt │ ├── custom-frontmatter │ │ ├── template-excerpt-comment.njk │ │ ├── template-newline1.njk │ │ ├── template-newline2.njk │ │ ├── template-newline3.njk │ │ ├── template-nonewline.njk │ │ ├── template-toml.njk │ │ └── template.njk │ ├── data-cascade │ │ ├── template.11tydata.cjs │ │ └── template.njk │ ├── datafiledoesnotexist │ │ └── template.njk │ ├── dates │ │ ├── 2018-01-01-file5.md │ │ ├── 2019-01-01-folder │ │ │ └── 2020-01-01-file.md │ │ ├── file1.md │ │ ├── file2.md │ │ ├── file2b.md │ │ ├── file3.md │ │ └── file4.md │ ├── default-class-export-and-others.11ty.js │ ├── default-export-and-others.11ty.js │ ├── default-frontmatter.txt │ ├── default-function-export-and-named-data.11ty.cjs │ ├── default-function-export-and-named-data.11ty.js │ ├── default-no-liquid.md │ ├── default.liquid │ ├── default.md │ ├── dependencies │ │ ├── dep1.cjs │ │ ├── dep2.cjs │ │ └── two-deps.11ty.cjs │ ├── deps │ │ ├── dep1.cjs │ │ └── dep2.cjs │ ├── dynamic-permalink │ │ └── test.njk │ ├── eleventyComputed │ │ ├── first.njk │ │ ├── override-reuse.njk │ │ ├── override.njk │ │ ├── permalink-simple.njk │ │ ├── permalink-slug.njk │ │ ├── permalink.njk │ │ ├── second.njk │ │ ├── third.njk │ │ ├── true.njk │ │ └── use-global-data.njk │ ├── eleventyExcludeFromCollections.njk │ ├── eleventyExcludeFromCollectionsPermalinkFalse.njk │ ├── engine-singletons │ │ ├── first.njk │ │ └── second.njk │ ├── exitCode │ │ └── failure.njk │ ├── exitCode_globalData │ │ ├── _data │ │ │ └── test.js │ │ └── test.liquid │ ├── exitCode_success │ │ └── success.njk │ ├── exports-flatdata.11ty.cjs │ ├── fileslug.11ty.cjs │ ├── firstdir │ │ └── seconddir │ │ │ └── component.njk │ ├── formatTest.liquid │ ├── frontmatter-date │ │ ├── test.liquid │ │ └── test.njk │ ├── function-arrow.11ty.cjs │ ├── function-async-filter.11ty.cjs │ ├── function-async.11ty.cjs │ ├── function-buffer.11ty.cjs │ ├── function-filter.11ty.cjs │ ├── function-fns.11ty.cjs │ ├── function-markdown.11ty.cjs │ ├── function-prototype.11ty.cjs │ ├── function-throws-async.11ty.cjs │ ├── function-throws.11ty.cjs │ ├── function.11ty.cjs │ ├── glob-pages │ │ ├── about.md │ │ ├── contact.md │ │ └── home.md │ ├── global-dash-variable.liquid │ ├── globby │ │ ├── _includes │ │ │ └── include.html │ │ └── test.html │ ├── ignore-dedupe │ │ └── .gitignore │ ├── ignore1 │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignore2 │ │ ├── .gitignore │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignore3 │ │ ├── .eleventyignore │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignore4 │ │ ├── .eleventyignore │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignore5 │ │ ├── .gitignore │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignore6 │ │ ├── .eleventyignore │ │ ├── .gitignore │ │ └── ignoredFolder │ │ │ └── ignored.md │ ├── ignoredFolder │ │ └── ignored.md │ ├── ignorelocalroot │ │ └── .eleventyignore │ ├── ignorelocalrootgitignore │ │ ├── .eleventyignore │ │ └── .gitignore │ ├── img │ │ └── stub.md │ ├── included.liquid │ ├── includer.liquid │ ├── includesemptystring.liquid │ ├── index.html │ ├── index.liquid │ ├── issue-115 │ │ ├── index-with-layout.liquid │ │ ├── index.liquid │ │ ├── template-bars.liquid │ │ └── template-foos.liquid │ ├── issue-135 │ │ ├── template.json │ │ └── template.njk │ ├── issue-522 │ │ ├── excluded.md │ │ └── template.md │ ├── issue-95 │ │ ├── cat.md │ │ └── notacat.md │ ├── layout-permalink-difflang │ │ ├── _includes │ │ │ └── test.njk │ │ └── test.md │ ├── layoutsemptystring.liquid │ ├── local-data-tags │ │ ├── component.11tydata.cjs │ │ └── component.njk │ ├── multiple-ignores │ │ ├── .eleventyignore │ │ ├── ignoredFolder │ │ │ └── ignored.md │ │ └── subfolder │ │ │ ├── .eleventyignore │ │ │ └── ignoredFolder2 │ │ │ └── ignored2.md │ ├── multipleexports-promises.11ty.cjs │ ├── multipleexports.11ty.cjs │ ├── njk-relative │ │ └── dir │ │ │ ├── base.njk │ │ │ ├── imports.njk │ │ │ ├── included.njk │ │ │ └── unique-include-123.njk │ ├── object-norender.11ty.cjs │ ├── object.11ty.cjs │ ├── oneinstance.11ty.cjs │ ├── overrides │ │ ├── layout.njk │ │ ├── layoutfalse.njk │ │ ├── page-templatesyntax.md │ │ ├── test-bypass.md │ │ ├── test-empty.html │ │ ├── test-empty.md │ │ ├── test-error.njk │ │ ├── test-md.liquid │ │ ├── test-multiple.md │ │ ├── test-multiple2.njk │ │ ├── test-njk.liquid │ │ ├── test.html │ │ ├── test.liquid │ │ └── test.md │ ├── page-target-collections │ │ ├── paginateall.njk │ │ ├── tagpages.njk │ │ └── tagpagesall.njk │ ├── paged-global-data-mutable │ │ ├── _data │ │ │ └── testdata.cjs │ │ └── paged-differing-data-set.njk │ ├── paged │ │ ├── cfg-collection-tag-cfg-collection │ │ │ ├── consumer.njk │ │ │ ├── paged-downstream.njk │ │ │ ├── paged-main.njk │ │ │ ├── test1.njk │ │ │ ├── test2.njk │ │ │ └── test3.njk │ │ ├── collection-apply-to-all │ │ │ ├── consumer.njk │ │ │ ├── main.njk │ │ │ ├── test1.njk │ │ │ ├── test2.njk │ │ │ └── test3.njk │ │ ├── collection │ │ │ ├── consumer.njk │ │ │ ├── main.njk │ │ │ ├── test1.njk │ │ │ ├── test2.njk │ │ │ └── test3.njk │ │ ├── notpaged.njk │ │ ├── paged-before-and-reverse.njk │ │ ├── paged-before-filter.njk │ │ ├── paged-before-metadata.njk │ │ ├── paged-before.njk │ │ ├── paged-empty-pageonemptydata.njk │ │ ├── paged-empty.njk │ │ ├── paged.json │ │ ├── paged.njk │ │ ├── pagedalias.njk │ │ ├── pagedaliassize2.njk │ │ ├── pagedinlinedata-reverse.njk │ │ ├── pagedinlinedata.njk │ │ ├── pagedobject.njk │ │ ├── pagedobjectfilterarray.njk │ │ ├── pagedobjectfilterstring.njk │ │ ├── pagedobjectvalues.njk │ │ ├── pagedpermalink.njk │ │ ├── pagedpermalinkif.liquid │ │ ├── pagedpermalinkif.njk │ │ ├── pagedpermalinknumeric.njk │ │ ├── pagedpermalinknumericoneindexed.njk │ │ └── pagedresolve.njk │ ├── pagedate.liquid │ ├── pagedate.njk │ ├── pagedateutc.njk │ ├── pagination-eleventycomputed-permalink.liquid │ ├── pagination-eleventycomputed-title.liquid │ ├── pagination-templatecontent │ │ ├── index.njk │ │ ├── post-1.md │ │ └── post-2.md │ ├── permalink-build │ │ └── permalink-build.md │ ├── permalink-conflicts-false │ │ ├── test1.md │ │ └── test2.md │ ├── permalink-conflicts │ │ ├── test1.md │ │ ├── test2.md │ │ └── test3.md │ ├── permalink-data-layout │ │ ├── test.json │ │ └── test.njk │ ├── permalink-empty-object │ │ └── empty-object.md │ ├── permalink-false-computed │ │ └── test.md │ ├── permalink-false │ │ └── test.md │ ├── permalink-in-layout-fileslug.liquid │ ├── permalink-in-layout.liquid │ ├── permalink-markdown-override.md │ ├── permalink-markdown-var.md │ ├── permalink-markdown.md │ ├── permalink-nobuild │ │ └── permalink-nobuild.md │ ├── permalink-true │ │ └── permalink-true.md │ ├── permalinkdata-jsfn.njk │ ├── permalinkdata-jspermalinkfn.njk │ ├── permalinkdata.njk │ ├── permalinkdate.liquid │ ├── permalinked.liquid │ ├── posts │ │ ├── post1.njk │ │ ├── posts.json │ │ └── posts.njk │ ├── prematureTemplateContent │ │ ├── test.11ty.cjs │ │ ├── test.liquid │ │ ├── test.md │ │ └── test.njk │ ├── promise.11ty.cjs │ ├── public │ │ └── test.css │ ├── relative-liquid │ │ └── dir │ │ │ └── included.liquid │ ├── reuse-permalink │ │ ├── reuse-permalink.json │ │ └── test1.liquid │ ├── script-frontmatter │ │ ├── test-default.njk │ │ ├── test-js.njk │ │ └── test.njk │ ├── string.11ty.cjs │ ├── string.11ty.custom │ ├── string.11ty.possum │ ├── stubs-1541 │ │ └── _includes │ │ │ └── render-source.liquid │ ├── stubs-computed-permalink │ │ ├── eleventycomputed-nested-object.11ty.cjs │ │ ├── eleventycomputed-object-replace.11ty.cjs │ │ └── eleventycomputed-object.11ty.cjs │ ├── stubs-virtual-conflict │ │ └── virtual.md │ ├── subdir │ │ ├── img │ │ │ └── .gitkeep │ │ └── index.html │ ├── subfolder │ │ ├── index.html │ │ ├── subfolder.liquid │ │ └── subfolder │ │ │ └── subfolder.liquid │ ├── tagged-pagination-multiples-layout │ │ └── test.njk │ ├── tagged-pagination-multiples │ │ └── test.njk │ ├── template-passthrough-duplicates │ │ └── input │ │ │ ├── avatar.png │ │ │ └── src │ │ │ └── views │ │ │ └── avatar.png │ ├── template-passthrough │ │ ├── .htaccess │ │ ├── img.jpg │ │ ├── src │ │ │ └── views │ │ │ │ └── avatar.png │ │ └── static │ │ │ ├── nested │ │ │ └── test-nested.css │ │ │ ├── test.css │ │ │ └── test.js │ ├── template-passthrough2 │ │ ├── .htaccess │ │ ├── img.jpg │ │ ├── src │ │ │ └── views │ │ │ │ └── avatar.png │ │ └── static │ │ │ ├── nested │ │ │ └── test-nested.css │ │ │ ├── test.css │ │ │ └── test.js │ ├── template.liquid │ ├── templateFrontMatter.liquid │ ├── templateFrontMatterJs.njk │ ├── templateFrontMatterJson.liquid │ ├── templateLayoutCacheDuplicates-b │ │ └── _includes │ │ │ └── layout.njk │ ├── templateLayoutCacheDuplicates │ │ └── _includes │ │ │ └── layout.njk │ ├── templateMapCollection │ │ ├── paged-cfg-permalink.md │ │ ├── paged-cfg-tagged-apply-to-all.md │ │ ├── paged-cfg-tagged-permalink-apply-to-all.md │ │ ├── paged-cfg-tagged-permalink.md │ │ ├── paged-cfg-tagged.md │ │ ├── paged-cfg.md │ │ ├── paged-tag-dogs-templateContent-alias.md │ │ ├── paged-tag-dogs-templateContent.md │ │ ├── paged-tag.md │ │ ├── templateContent.md │ │ ├── test1.md │ │ ├── test2.md │ │ ├── test3.md │ │ ├── test4.md │ │ ├── test5.md │ │ └── testWithLayout.md │ ├── templateTwoLayouts.liquid │ ├── templateWithLayout.liquid │ ├── templateWithLayoutContent.liquid │ ├── templateWithLayoutKey.liquid │ ├── templatetest-frontmatter │ │ ├── multiple.njk │ │ └── single.njk │ ├── test-override-js-markdown.11ty.cjs │ ├── testing.html │ ├── transform-pages │ │ └── template.njk │ ├── use-collection.11ty.cjs │ ├── vue-layout.11ty.cjs │ ├── vue.11ty.cjs │ ├── writeTest │ │ └── test.md │ ├── writeTestJS-casesensitive │ │ ├── sample.Js │ │ └── test.11Ty.js │ ├── writeTestJS-passthrough │ │ ├── sample.js │ │ └── test.11ty.js │ ├── writeTestJS │ │ ├── sample.cjs │ │ └── test.11ty.cjs │ └── writeTestMarkdown │ │ ├── sample.md │ │ └── sample2.markdown └── views │ └── .gitkeep ├── test_node ├── 3824 │ ├── 3824-test.js │ ├── _includes │ │ ├── head.tsx │ │ └── view-props.tsx │ ├── eleventy.config.js │ ├── index.11ty.tsx │ └── tsconfig-3824.json ├── 3824-incremental │ ├── 3824-incremental-test.js │ ├── _includes │ │ ├── head.tsx │ │ └── view-props.tsx │ ├── eleventy.config.js │ ├── index.11ty.tsx │ └── tsconfig-3824.json ├── JsxTest.js ├── MdxTest.js ├── README.md └── tests.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/possible-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/ISSUE_TEMPLATE/possible-bug.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/opencollective.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/opencollective.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/cmd.cjs -------------------------------------------------------------------------------- /docs/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/docs/coverage.md -------------------------------------------------------------------------------- /docs/coverage.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/docs/coverage.njk -------------------------------------------------------------------------------- /docs/eleventy.coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/docs/eleventy.coverage.js -------------------------------------------------------------------------------- /docs/release-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/docs/release-instructions.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/package.json -------------------------------------------------------------------------------- /packages/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/README.md -------------------------------------------------------------------------------- /packages/client/generate-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/generate-bundle.js -------------------------------------------------------------------------------- /packages/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/package.json -------------------------------------------------------------------------------- /packages/client/src/BundleCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleCore.js -------------------------------------------------------------------------------- /packages/client/src/BundleEleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleEleventy.js -------------------------------------------------------------------------------- /packages/client/src/BundleI18nPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleI18nPlugin.js -------------------------------------------------------------------------------- /packages/client/src/BundleLiquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleLiquid.js -------------------------------------------------------------------------------- /packages/client/src/BundleMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleMarkdown.js -------------------------------------------------------------------------------- /packages/client/src/BundleNunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/BundleNunjucks.js -------------------------------------------------------------------------------- /packages/client/src/shims/process.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/shims/process.cjs -------------------------------------------------------------------------------- /packages/client/src/shims/shim-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/src/shims/shim-core.js -------------------------------------------------------------------------------- /packages/client/test/client-core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/test/client-core.test.js -------------------------------------------------------------------------------- /packages/client/test/client-eleventy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/test/client-eleventy.test.js -------------------------------------------------------------------------------- /packages/client/test/shared-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/test/shared-tests.js -------------------------------------------------------------------------------- /packages/client/update-package-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/update-package-json.js -------------------------------------------------------------------------------- /packages/client/vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/packages/client/vitest.config.js -------------------------------------------------------------------------------- /scripts/release-dryrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/scripts/release-dryrun.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /src/Adapters/Engines/Liquid.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Engines/Liquid.core.js -------------------------------------------------------------------------------- /src/Adapters/Engines/Liquid.js: -------------------------------------------------------------------------------- 1 | export { default } from "../../Engines/Liquid.js"; 2 | -------------------------------------------------------------------------------- /src/Adapters/Engines/Markdown.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Engines/Markdown.core.js -------------------------------------------------------------------------------- /src/Adapters/Engines/Markdown.js: -------------------------------------------------------------------------------- 1 | export { default } from "../../Engines/Markdown.js"; 2 | -------------------------------------------------------------------------------- /src/Adapters/Engines/Nunjucks.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Engines/Nunjucks.core.js -------------------------------------------------------------------------------- /src/Adapters/Engines/Nunjucks.js: -------------------------------------------------------------------------------- 1 | export { default } from "../../Engines/Nunjucks.js"; 2 | -------------------------------------------------------------------------------- /src/Adapters/Packages/chalk.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/chalk.client.js -------------------------------------------------------------------------------- /src/Adapters/Packages/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/chalk.js -------------------------------------------------------------------------------- /src/Adapters/Packages/inspect.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/inspect.core.js -------------------------------------------------------------------------------- /src/Adapters/Packages/inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/inspect.js -------------------------------------------------------------------------------- /src/Adapters/Packages/semver.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/semver.client.js -------------------------------------------------------------------------------- /src/Adapters/Packages/semver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/semver.js -------------------------------------------------------------------------------- /src/Adapters/Packages/url.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/Packages/url.core.js -------------------------------------------------------------------------------- /src/Adapters/Packages/url.js: -------------------------------------------------------------------------------- 1 | export { fileURLToPath } from "node:url"; 2 | -------------------------------------------------------------------------------- /src/Adapters/getDefaultConfig.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/getDefaultConfig.core.js -------------------------------------------------------------------------------- /src/Adapters/getDefaultConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Adapters/getDefaultConfig.js -------------------------------------------------------------------------------- /src/Benchmark/Benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Benchmark/Benchmark.js -------------------------------------------------------------------------------- /src/Benchmark/BenchmarkGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Benchmark/BenchmarkGroup.js -------------------------------------------------------------------------------- /src/Benchmark/BenchmarkManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Benchmark/BenchmarkManager.js -------------------------------------------------------------------------------- /src/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Core.js -------------------------------------------------------------------------------- /src/CoreMinimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/CoreMinimal.js -------------------------------------------------------------------------------- /src/Data/ComputedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/ComputedData.js -------------------------------------------------------------------------------- /src/Data/ComputedDataProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/ComputedDataProxy.js -------------------------------------------------------------------------------- /src/Data/ComputedDataQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/ComputedDataQueue.js -------------------------------------------------------------------------------- /src/Data/ComputedDataTemplateString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/ComputedDataTemplateString.js -------------------------------------------------------------------------------- /src/Data/TemplateData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/TemplateData.js -------------------------------------------------------------------------------- /src/Data/TemplateDataInitialGlobalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Data/TemplateDataInitialGlobalData.js -------------------------------------------------------------------------------- /src/Eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Eleventy.js -------------------------------------------------------------------------------- /src/EleventyCommonJs.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/EleventyCommonJs.cjs -------------------------------------------------------------------------------- /src/EleventyExtensionMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/EleventyExtensionMap.js -------------------------------------------------------------------------------- /src/EleventyFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/EleventyFiles.js -------------------------------------------------------------------------------- /src/EleventyServe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/EleventyServe.js -------------------------------------------------------------------------------- /src/Engines/Custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Custom.js -------------------------------------------------------------------------------- /src/Engines/FrontMatter/JavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/FrontMatter/JavaScript.js -------------------------------------------------------------------------------- /src/Engines/Html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Html.js -------------------------------------------------------------------------------- /src/Engines/JavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/JavaScript.js -------------------------------------------------------------------------------- /src/Engines/Liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Liquid.js -------------------------------------------------------------------------------- /src/Engines/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Markdown.js -------------------------------------------------------------------------------- /src/Engines/Nunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Nunjucks.js -------------------------------------------------------------------------------- /src/Engines/TemplateEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/TemplateEngine.js -------------------------------------------------------------------------------- /src/Engines/TemplateEngineManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/TemplateEngineManager.js -------------------------------------------------------------------------------- /src/Engines/Util/ContextAugmenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Engines/Util/ContextAugmenter.js -------------------------------------------------------------------------------- /src/Errors/DuplicatePermalinkOutputError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Errors/DuplicatePermalinkOutputError.js -------------------------------------------------------------------------------- /src/Errors/EleventyBaseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Errors/EleventyBaseError.js -------------------------------------------------------------------------------- /src/Errors/EleventyErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Errors/EleventyErrorHandler.js -------------------------------------------------------------------------------- /src/Errors/EleventyErrorUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Errors/EleventyErrorUtil.js -------------------------------------------------------------------------------- /src/Errors/TemplateContentPrematureUseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Errors/TemplateContentPrematureUseError.js -------------------------------------------------------------------------------- /src/EventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/EventBus.js -------------------------------------------------------------------------------- /src/FileSystemSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/FileSystemSearch.js -------------------------------------------------------------------------------- /src/Filters/GetCollectionItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Filters/GetCollectionItem.js -------------------------------------------------------------------------------- /src/Filters/GetCollectionItemIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Filters/GetCollectionItemIndex.js -------------------------------------------------------------------------------- /src/Filters/GetLocaleCollectionItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Filters/GetLocaleCollectionItem.js -------------------------------------------------------------------------------- /src/Filters/Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Filters/Url.js -------------------------------------------------------------------------------- /src/GlobalDependencyMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/GlobalDependencyMap.js -------------------------------------------------------------------------------- /src/LayoutCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/LayoutCache.js -------------------------------------------------------------------------------- /src/Plugins/HtmlBasePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/HtmlBasePlugin.js -------------------------------------------------------------------------------- /src/Plugins/HtmlRelativeCopyPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/HtmlRelativeCopyPlugin.js -------------------------------------------------------------------------------- /src/Plugins/I18nPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/I18nPlugin.js -------------------------------------------------------------------------------- /src/Plugins/IdAttributePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/IdAttributePlugin.js -------------------------------------------------------------------------------- /src/Plugins/InputPathToUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/InputPathToUrl.js -------------------------------------------------------------------------------- /src/Plugins/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/Pagination.js -------------------------------------------------------------------------------- /src/Plugins/RenderPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Plugins/RenderPlugin.js -------------------------------------------------------------------------------- /src/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Template.js -------------------------------------------------------------------------------- /src/TemplateBehavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateBehavior.js -------------------------------------------------------------------------------- /src/TemplateCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateCollection.js -------------------------------------------------------------------------------- /src/TemplateConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateConfig.js -------------------------------------------------------------------------------- /src/TemplateContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateContent.js -------------------------------------------------------------------------------- /src/TemplateFileSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateFileSlug.js -------------------------------------------------------------------------------- /src/TemplateGlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateGlob.js -------------------------------------------------------------------------------- /src/TemplateLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateLayout.js -------------------------------------------------------------------------------- /src/TemplateLayoutPathResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateLayoutPathResolver.js -------------------------------------------------------------------------------- /src/TemplateMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateMap.js -------------------------------------------------------------------------------- /src/TemplatePassthrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplatePassthrough.js -------------------------------------------------------------------------------- /src/TemplatePassthroughManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplatePassthroughManager.js -------------------------------------------------------------------------------- /src/TemplatePermalink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplatePermalink.js -------------------------------------------------------------------------------- /src/TemplatePreprocessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplatePreprocessors.js -------------------------------------------------------------------------------- /src/TemplateRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateRender.js -------------------------------------------------------------------------------- /src/TemplateWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/TemplateWriter.js -------------------------------------------------------------------------------- /src/UserConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/UserConfig.js -------------------------------------------------------------------------------- /src/Util/ArrayUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ArrayUtil.js -------------------------------------------------------------------------------- /src/Util/AsyncEventEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/AsyncEventEmitter.js -------------------------------------------------------------------------------- /src/Util/Compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Compatibility.js -------------------------------------------------------------------------------- /src/Util/ConsoleLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ConsoleLogger.js -------------------------------------------------------------------------------- /src/Util/DateParse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/DateParse.js -------------------------------------------------------------------------------- /src/Util/DirContains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/DirContains.js -------------------------------------------------------------------------------- /src/Util/EsmResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/EsmResolver.js -------------------------------------------------------------------------------- /src/Util/EsmResolverPortAdapter.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/EsmResolverPortAdapter.core.js -------------------------------------------------------------------------------- /src/Util/EsmResolverPortAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/EsmResolverPortAdapter.js -------------------------------------------------------------------------------- /src/Util/EventBusUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/EventBusUtil.js -------------------------------------------------------------------------------- /src/Util/ExistsCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ExistsCache.js -------------------------------------------------------------------------------- /src/Util/FilePathUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/FilePathUtil.js -------------------------------------------------------------------------------- /src/Util/FileSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/FileSize.js -------------------------------------------------------------------------------- /src/Util/FileSystemManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/FileSystemManager.js -------------------------------------------------------------------------------- /src/Util/GetJavaScriptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/GetJavaScriptData.js -------------------------------------------------------------------------------- /src/Util/Git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Git.js -------------------------------------------------------------------------------- /src/Util/GlobMatcher.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/GlobMatcher.client.js -------------------------------------------------------------------------------- /src/Util/GlobMatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/GlobMatcher.js -------------------------------------------------------------------------------- /src/Util/GlobRemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/GlobRemap.js -------------------------------------------------------------------------------- /src/Util/GlobStripper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/GlobStripper.js -------------------------------------------------------------------------------- /src/Util/HtmlRelativeCopy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/HtmlRelativeCopy.js -------------------------------------------------------------------------------- /src/Util/HtmlTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/HtmlTransformer.js -------------------------------------------------------------------------------- /src/Util/ImportJsonSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ImportJsonSync.js -------------------------------------------------------------------------------- /src/Util/IsAsyncFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/IsAsyncFunction.js -------------------------------------------------------------------------------- /src/Util/JavaScriptDependencies.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/JavaScriptDependencies.core.js -------------------------------------------------------------------------------- /src/Util/JavaScriptDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/JavaScriptDependencies.js -------------------------------------------------------------------------------- /src/Util/MemoizeFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/MemoizeFunction.js -------------------------------------------------------------------------------- /src/Util/NewLineAdapter.core.js: -------------------------------------------------------------------------------- 1 | export const EOL = "\n"; 2 | -------------------------------------------------------------------------------- /src/Util/NewLineAdapter.js: -------------------------------------------------------------------------------- 1 | export { EOL } from "node:os"; 2 | -------------------------------------------------------------------------------- /src/Util/Objects/DeepFreeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Objects/DeepFreeze.js -------------------------------------------------------------------------------- /src/Util/Objects/ObjectFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Objects/ObjectFilter.js -------------------------------------------------------------------------------- /src/Util/Objects/ProxyWrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Objects/ProxyWrap.js -------------------------------------------------------------------------------- /src/Util/Objects/SampleModule.mjs: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/Util/Objects/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Objects/Sortable.js -------------------------------------------------------------------------------- /src/Util/Objects/Unique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Objects/Unique.js -------------------------------------------------------------------------------- /src/Util/PassthroughCopyBehaviorCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/PassthroughCopyBehaviorCheck.js -------------------------------------------------------------------------------- /src/Util/PathNormalizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/PathNormalizer.js -------------------------------------------------------------------------------- /src/Util/PathPrefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/PathPrefixer.js -------------------------------------------------------------------------------- /src/Util/Pluralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Pluralize.js -------------------------------------------------------------------------------- /src/Util/ProjectDirectories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ProjectDirectories.js -------------------------------------------------------------------------------- /src/Util/ProjectTemplateFormats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ProjectTemplateFormats.js -------------------------------------------------------------------------------- /src/Util/PromiseUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/PromiseUtil.js -------------------------------------------------------------------------------- /src/Util/Require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/Require.js -------------------------------------------------------------------------------- /src/Util/RequireUtils.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/RequireUtils.core.js -------------------------------------------------------------------------------- /src/Util/RequireUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/RequireUtils.js -------------------------------------------------------------------------------- /src/Util/ReservedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ReservedData.js -------------------------------------------------------------------------------- /src/Util/ResolvePlugin.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ResolvePlugin.client.js -------------------------------------------------------------------------------- /src/Util/ResolvePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/ResolvePlugin.js -------------------------------------------------------------------------------- /src/Util/RetrieveGlobals.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/RetrieveGlobals.client.js -------------------------------------------------------------------------------- /src/Util/RetrieveGlobals.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/RetrieveGlobals.core.js -------------------------------------------------------------------------------- /src/Util/RetrieveGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/RetrieveGlobals.js -------------------------------------------------------------------------------- /src/Util/SemverCoerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/SemverCoerce.js -------------------------------------------------------------------------------- /src/Util/SetUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/SetUtil.js -------------------------------------------------------------------------------- /src/Util/TemplateDepGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/TemplateDepGraph.js -------------------------------------------------------------------------------- /src/Util/TransformsUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/TransformsUtil.js -------------------------------------------------------------------------------- /src/Util/UrlUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/UrlUtil.js -------------------------------------------------------------------------------- /src/Util/importer.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/importer.client.js -------------------------------------------------------------------------------- /src/Util/importer.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/importer.core.js -------------------------------------------------------------------------------- /src/Util/importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/importer.js -------------------------------------------------------------------------------- /src/Util/spawn.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/spawn.core.js -------------------------------------------------------------------------------- /src/Util/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Util/spawn.js -------------------------------------------------------------------------------- /src/Watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/Watch.js -------------------------------------------------------------------------------- /src/WatchQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/WatchQueue.js -------------------------------------------------------------------------------- /src/WatchTargets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/WatchTargets.js -------------------------------------------------------------------------------- /src/defaultConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/defaultConfig.js -------------------------------------------------------------------------------- /src/defaultConfigExtended.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/defaultConfigExtended.client.js -------------------------------------------------------------------------------- /src/defaultConfigExtended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/src/defaultConfigExtended.js -------------------------------------------------------------------------------- /test/ArrayUtilTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ArrayUtilTest.js -------------------------------------------------------------------------------- /test/BenchmarkTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/BenchmarkTest.js -------------------------------------------------------------------------------- /test/BundlePluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/BundlePluginTest.js -------------------------------------------------------------------------------- /test/CompatibilityTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/CompatibilityTest.js -------------------------------------------------------------------------------- /test/ComputedDataProxyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ComputedDataProxyTest.js -------------------------------------------------------------------------------- /test/ComputedDataQueueTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ComputedDataQueueTest.js -------------------------------------------------------------------------------- /test/ComputedDataTemplateStringTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ComputedDataTemplateStringTest.js -------------------------------------------------------------------------------- /test/ComputedDataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ComputedDataTest.js -------------------------------------------------------------------------------- /test/ConsoleLoggerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ConsoleLoggerTest.js -------------------------------------------------------------------------------- /test/DependencyGraphTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/DependencyGraphTest.js -------------------------------------------------------------------------------- /test/DirContainsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/DirContainsTest.js -------------------------------------------------------------------------------- /test/EleventyAddGlobalDataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyAddGlobalDataTest.js -------------------------------------------------------------------------------- /test/EleventyErrorHandlerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyErrorHandlerTest.js -------------------------------------------------------------------------------- /test/EleventyErrorUtilTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyErrorUtilTest.js -------------------------------------------------------------------------------- /test/EleventyExtensionMapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyExtensionMapTest.js -------------------------------------------------------------------------------- /test/EleventyFilesGitIgnoreEleventyIgnoreTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyFilesGitIgnoreEleventyIgnoreTest.js -------------------------------------------------------------------------------- /test/EleventyFilesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyFilesTest.js -------------------------------------------------------------------------------- /test/EleventyImgTransformTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyImgTransformTest.js -------------------------------------------------------------------------------- /test/EleventyMarkdownTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyMarkdownTest.js -------------------------------------------------------------------------------- /test/EleventyNunjucksTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyNunjucksTest.js -------------------------------------------------------------------------------- /test/EleventyServeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyServeTest.js -------------------------------------------------------------------------------- /test/EleventyTest-CustomDateParsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyTest-CustomDateParsing.js -------------------------------------------------------------------------------- /test/EleventyTest-PageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyTest-PageData.js -------------------------------------------------------------------------------- /test/EleventyTest-Preprocessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyTest-Preprocessors.js -------------------------------------------------------------------------------- /test/EleventyTest-Shortcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyTest-Shortcodes.js -------------------------------------------------------------------------------- /test/EleventyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyTest.js -------------------------------------------------------------------------------- /test/EleventyVirtualTemplatesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/EleventyVirtualTemplatesTest.js -------------------------------------------------------------------------------- /test/ExistsCacheTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ExistsCacheTest.js -------------------------------------------------------------------------------- /test/FileSystemSearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/FileSystemSearchTest.js -------------------------------------------------------------------------------- /test/GetCollectionItemIndexTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/GetCollectionItemIndexTest.js -------------------------------------------------------------------------------- /test/GetCollectionItemTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/GetCollectionItemTest.js -------------------------------------------------------------------------------- /test/GlobRemapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/GlobRemapTest.js -------------------------------------------------------------------------------- /test/GlobStripperTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/GlobStripperTest.js -------------------------------------------------------------------------------- /test/GlobalDependencyMapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/GlobalDependencyMapTest.js -------------------------------------------------------------------------------- /test/HtmlBasePluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/HtmlBasePluginTest.js -------------------------------------------------------------------------------- /test/HtmlRelativeCopyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/HtmlRelativeCopyTest.js -------------------------------------------------------------------------------- /test/I18nPluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/I18nPluginTest.js -------------------------------------------------------------------------------- /test/IdAttributePluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/IdAttributePluginTest.js -------------------------------------------------------------------------------- /test/ImportJsonSyncTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ImportJsonSyncTest.js -------------------------------------------------------------------------------- /test/InputPathToUrlPluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/InputPathToUrlPluginTest.js -------------------------------------------------------------------------------- /test/Issue3467Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3467Test.js -------------------------------------------------------------------------------- /test/Issue3788Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3788Test.js -------------------------------------------------------------------------------- /test/Issue3797Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3797Test.js -------------------------------------------------------------------------------- /test/Issue3808Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3808Test.js -------------------------------------------------------------------------------- /test/Issue3809Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3809Test.js -------------------------------------------------------------------------------- /test/Issue3816Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3816Test.js -------------------------------------------------------------------------------- /test/Issue3818Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3818Test.js -------------------------------------------------------------------------------- /test/Issue3823Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3823Test.js -------------------------------------------------------------------------------- /test/Issue3825Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3825Test.js -------------------------------------------------------------------------------- /test/Issue3831Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3831Test.js -------------------------------------------------------------------------------- /test/Issue3833Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3833Test.js -------------------------------------------------------------------------------- /test/Issue3850Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3850Test.js -------------------------------------------------------------------------------- /test/Issue3853Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3853Test.js -------------------------------------------------------------------------------- /test/Issue3854Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3854Test.js -------------------------------------------------------------------------------- /test/Issue3860Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3860Test.js -------------------------------------------------------------------------------- /test/Issue3870IncrementalTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3870IncrementalTest.js -------------------------------------------------------------------------------- /test/Issue3870Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3870Test.js -------------------------------------------------------------------------------- /test/Issue3875Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue3875Test.js -------------------------------------------------------------------------------- /test/Issue434Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue434Test.js -------------------------------------------------------------------------------- /test/Issue775Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Issue775Test.js -------------------------------------------------------------------------------- /test/JavaScriptDependenciesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/JavaScriptDependenciesTest.js -------------------------------------------------------------------------------- /test/JavaScriptFrontMatterTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/JavaScriptFrontMatterTest.js -------------------------------------------------------------------------------- /test/LayoutCacheTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/LayoutCacheTest.js -------------------------------------------------------------------------------- /test/LodashTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/LodashTest.js -------------------------------------------------------------------------------- /test/PaginationTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/PaginationTest.js -------------------------------------------------------------------------------- /test/PassthroughCopyBehaviorTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/PassthroughCopyBehaviorTest.js -------------------------------------------------------------------------------- /test/PathNormalizerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/PathNormalizerTest.js -------------------------------------------------------------------------------- /test/PathPrefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/PathPrefixer.js -------------------------------------------------------------------------------- /test/PluralizeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/PluralizeTest.js -------------------------------------------------------------------------------- /test/ProjectDirectoriesTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ProjectDirectoriesTest.js -------------------------------------------------------------------------------- /test/ProjectTemplateFormatsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ProjectTemplateFormatsTest.js -------------------------------------------------------------------------------- /test/ProxyWrapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ProxyWrapTest.js -------------------------------------------------------------------------------- /test/ReservedDataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/ReservedDataTest.js -------------------------------------------------------------------------------- /test/SemverCheckTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/SemverCheckTest.js -------------------------------------------------------------------------------- /test/SortableTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/SortableTest.js -------------------------------------------------------------------------------- /test/TemplateCollectionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateCollectionTest.js -------------------------------------------------------------------------------- /test/TemplateConfigTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateConfigTest.js -------------------------------------------------------------------------------- /test/TemplateDataTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateDataTest.js -------------------------------------------------------------------------------- /test/TemplateDepGraphTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateDepGraphTest.js -------------------------------------------------------------------------------- /test/TemplateEngineManagerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateEngineManagerTest.js -------------------------------------------------------------------------------- /test/TemplateEngineTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateEngineTest.js -------------------------------------------------------------------------------- /test/TemplateFileSlugTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateFileSlugTest.js -------------------------------------------------------------------------------- /test/TemplateGlobTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateGlobTest.js -------------------------------------------------------------------------------- /test/TemplateLayoutPathResolverTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateLayoutPathResolverTest.js -------------------------------------------------------------------------------- /test/TemplateLayoutTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateLayoutTest.js -------------------------------------------------------------------------------- /test/TemplateMapTest-ComputedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateMapTest-ComputedData.js -------------------------------------------------------------------------------- /test/TemplateMapTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateMapTest.js -------------------------------------------------------------------------------- /test/TemplatePassthroughManagerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplatePassthroughManagerTest.js -------------------------------------------------------------------------------- /test/TemplatePassthroughTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplatePassthroughTest.js -------------------------------------------------------------------------------- /test/TemplatePermalinkTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplatePermalinkTest.js -------------------------------------------------------------------------------- /test/TemplateRenderCustomTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderCustomTest.js -------------------------------------------------------------------------------- /test/TemplateRenderHTMLTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderHTMLTest.js -------------------------------------------------------------------------------- /test/TemplateRenderJavaScriptTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderJavaScriptTest.js -------------------------------------------------------------------------------- /test/TemplateRenderLiquidTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderLiquidTest.js -------------------------------------------------------------------------------- /test/TemplateRenderMarkdownPluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderMarkdownPluginTest.js -------------------------------------------------------------------------------- /test/TemplateRenderMarkdownTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderMarkdownTest.js -------------------------------------------------------------------------------- /test/TemplateRenderNunjucksTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderNunjucksTest.js -------------------------------------------------------------------------------- /test/TemplateRenderPluginTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderPluginTest.js -------------------------------------------------------------------------------- /test/TemplateRenderTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateRenderTest.js -------------------------------------------------------------------------------- /test/TemplateTest-CompileOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-CompileOptions.js -------------------------------------------------------------------------------- /test/TemplateTest-ComputedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-ComputedData.js -------------------------------------------------------------------------------- /test/TemplateTest-CustomExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-CustomExtensions.js -------------------------------------------------------------------------------- /test/TemplateTest-DataCascade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-DataCascade.js -------------------------------------------------------------------------------- /test/TemplateTest-Dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-Dates.js -------------------------------------------------------------------------------- /test/TemplateTest-JavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest-JavaScript.js -------------------------------------------------------------------------------- /test/TemplateTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest.js -------------------------------------------------------------------------------- /test/TemplateTest_Permalink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateTest_Permalink.js -------------------------------------------------------------------------------- /test/TemplateWriterTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TemplateWriterTest.js -------------------------------------------------------------------------------- /test/TestUtilityTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TestUtilityTest.js -------------------------------------------------------------------------------- /test/TransformsUtilTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/TransformsUtilTest.js -------------------------------------------------------------------------------- /test/UrlTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/UrlTest.js -------------------------------------------------------------------------------- /test/UserConfigTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/UserConfigTest.js -------------------------------------------------------------------------------- /test/UserDataExtensionsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/UserDataExtensionsTest.js -------------------------------------------------------------------------------- /test/Util/normalizeNewLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Util/normalizeNewLines.js -------------------------------------------------------------------------------- /test/Util/normalizeSeparators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/Util/normalizeSeparators.js -------------------------------------------------------------------------------- /test/UtilSetUnionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/UtilSetUnionTest.js -------------------------------------------------------------------------------- /test/WatchQueueTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/WatchQueueTest.js -------------------------------------------------------------------------------- /test/WatchTargetsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/WatchTargetsTest.js -------------------------------------------------------------------------------- /test/_getNewTemplateForTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_getNewTemplateForTests.js -------------------------------------------------------------------------------- /test/_getRenderedTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_getRenderedTemplates.js -------------------------------------------------------------------------------- /test/_issues/0/content/index.html: -------------------------------------------------------------------------------- 1 |

HTML

2 | -------------------------------------------------------------------------------- /test/_issues/0/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/0/eleventy.config.js -------------------------------------------------------------------------------- /test/_issues/0/issue-0-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/0/issue-0-test.js -------------------------------------------------------------------------------- /test/_issues/2250/2250-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/2250/2250-test.js -------------------------------------------------------------------------------- /test/_issues/2250/javascript.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | return this.getUrl(); 3 | }; 4 | -------------------------------------------------------------------------------- /test/_issues/2250/liquid.liquid: -------------------------------------------------------------------------------- 1 | {{ "test" | getUrl }} -------------------------------------------------------------------------------- /test/_issues/2250/nunjucks.njk: -------------------------------------------------------------------------------- 1 | {{ "test" | getUrl }} -------------------------------------------------------------------------------- /test/_issues/3697/3697-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3697/3697-test.js -------------------------------------------------------------------------------- /test/_issues/3697/_data/folder/0.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /test/_issues/3697/_data/folder/3.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/_issues/3809/.app/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3809/.app/.eleventy.js -------------------------------------------------------------------------------- /test/_issues/3809/.app/_data/app.json: -------------------------------------------------------------------------------- 1 | {"name": "My Application"} 2 | -------------------------------------------------------------------------------- /test/_issues/3809/index.njk: -------------------------------------------------------------------------------- 1 | {{ app.name }} 2 | -------------------------------------------------------------------------------- /test/_issues/3853/deeper/index.njk: -------------------------------------------------------------------------------- 1 | 3853 2 | -------------------------------------------------------------------------------- /test/_issues/3854/app/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3854/app/.eleventy.js -------------------------------------------------------------------------------- /test/_issues/3854/app/index.njk: -------------------------------------------------------------------------------- 1 | 3854/child 2 | -------------------------------------------------------------------------------- /test/_issues/3854/index.njk: -------------------------------------------------------------------------------- 1 | 3854/parent 2 | -------------------------------------------------------------------------------- /test/_issues/3896/eleventy-input-folder/3896.html: -------------------------------------------------------------------------------- 1 | Issue 3896 -------------------------------------------------------------------------------- /test/_issues/3896/eleventy-input-folder/_archive/ignored.html: -------------------------------------------------------------------------------- 1 | This should be ignored -------------------------------------------------------------------------------- /test/_issues/3896/test-files/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3896/test-files/eleventy.config.js -------------------------------------------------------------------------------- /test/_issues/3896/test-files/issue3896-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3896/test-files/issue3896-test.js -------------------------------------------------------------------------------- /test/_issues/3932/1/2025.html: -------------------------------------------------------------------------------- 1 | {{ page.filePathStem }} 2 | -------------------------------------------------------------------------------- /test/_issues/3932/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3932/eleventy.config.js -------------------------------------------------------------------------------- /test/_issues/3932/issue-3932-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/3932/issue-3932-test.js -------------------------------------------------------------------------------- /test/_issues/975/975-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_issues/975/975-test.js -------------------------------------------------------------------------------- /test/_issues/975/another-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - post 4 | --- 5 | -------------------------------------------------------------------------------- /test/_issues/975/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | eleventyImport: 3 | collections: ["post"] 4 | --- 5 | -------------------------------------------------------------------------------- /test/_issues/975/post.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - post 4 | --- 5 | -------------------------------------------------------------------------------- /test/_testHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/_testHelpers.js -------------------------------------------------------------------------------- /test/cmdTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/cmdTest.js -------------------------------------------------------------------------------- /test/file-system-search/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/noop/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/noop2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/proxy-pagination-globaldata/_data/banner.js: -------------------------------------------------------------------------------- 1 | export default { 2 | content: "BANNER TEXT", 3 | }; 4 | -------------------------------------------------------------------------------- /test/proxy-pagination-globaldata/tmpl.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/proxy-pagination-globaldata/tmpl.liquid -------------------------------------------------------------------------------- /test/proxy-pagination-globaldata/tmpl2.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/proxy-pagination-globaldata/tmpl2.njk -------------------------------------------------------------------------------- /test/proxy-pagination-globaldata/tmpl4.11ty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/proxy-pagination-globaldata/tmpl4.11ty.js -------------------------------------------------------------------------------- /test/semverCoerceTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/semverCoerceTest.js -------------------------------------------------------------------------------- /test/slugify-filter/comma.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/comma.njk -------------------------------------------------------------------------------- /test/slugify-filter/multibyte.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/multibyte.njk -------------------------------------------------------------------------------- /test/slugify-filter/slug-number.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/slug-number.njk -------------------------------------------------------------------------------- /test/slugify-filter/slug-options.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/slug-options.njk -------------------------------------------------------------------------------- /test/slugify-filter/slugify-number.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/slugify-number.njk -------------------------------------------------------------------------------- /test/slugify-filter/slugify-options.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/slugify-options.njk -------------------------------------------------------------------------------- /test/slugify-filter/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/slugify-filter/test.njk -------------------------------------------------------------------------------- /test/stubs--to/test.md: -------------------------------------------------------------------------------- 1 | # hi 2 | -------------------------------------------------------------------------------- /test/stubs--to/test2.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | hi: hello 3 | --- 4 | {{ hi }} -------------------------------------------------------------------------------- /test/stubs-1206/page1.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-1206/page1.njk -------------------------------------------------------------------------------- /test/stubs-1206/page2.njk: -------------------------------------------------------------------------------- 1 | This is the second template.{{ collections.tag1[0].rawInput }} -------------------------------------------------------------------------------- /test/stubs-1242/_data/xyz.dottest.json: -------------------------------------------------------------------------------- 1 | { 2 | "hi": "bye" 3 | } 4 | -------------------------------------------------------------------------------- /test/stubs-1242/_data/xyz.dottest/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "abc": 42 3 | } 4 | -------------------------------------------------------------------------------- /test/stubs-1242/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-1325/test.11ty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-1325/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-142/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-142/index.njk -------------------------------------------------------------------------------- /test/stubs-1691/_data/str.txt: -------------------------------------------------------------------------------- 1 | Testing -------------------------------------------------------------------------------- /test/stubs-1691/template.11tydata.txt: -------------------------------------------------------------------------------- 1 | Template Data File -------------------------------------------------------------------------------- /test/stubs-1691/template.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-2145/_includes/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2145/_includes/layout.njk -------------------------------------------------------------------------------- /test/stubs-2145/test.njk: -------------------------------------------------------------------------------- 1 | {{ layout }} -------------------------------------------------------------------------------- /test/stubs-2167/paginated.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2167/paginated.njk -------------------------------------------------------------------------------- /test/stubs-2224/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2224/index.njk -------------------------------------------------------------------------------- /test/stubs-2258-2830-skip-layouts/_includes/layout.njk: -------------------------------------------------------------------------------- 1 | /* Banner */ 2 | {{ content | safe }} -------------------------------------------------------------------------------- /test/stubs-2258-2830-skip-layouts/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2258-2830-skip-layouts/style.scss -------------------------------------------------------------------------------- /test/stubs-2258/_includes/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2258/_includes/_code.scss -------------------------------------------------------------------------------- /test/stubs-2258/_includes/layout.njk: -------------------------------------------------------------------------------- 1 | /* Banner */ 2 | {{ content | safe }} -------------------------------------------------------------------------------- /test/stubs-2258/eleventy.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2258/eleventy.config.cjs -------------------------------------------------------------------------------- /test/stubs-2258/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2258/style.scss -------------------------------------------------------------------------------- /test/stubs-2261/_includes/block.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2261/_includes/block.njk -------------------------------------------------------------------------------- /test/stubs-2261/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2261/eleventy.config.js -------------------------------------------------------------------------------- /test/stubs-2261/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2261/index.njk -------------------------------------------------------------------------------- /test/stubs-2367/_includes/layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2367/_includes/layout.liquid -------------------------------------------------------------------------------- /test/stubs-2378/_data/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2378/_data/images/dog.jpg -------------------------------------------------------------------------------- /test/stubs-2378/_data/images/dogpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2378/_data/images/dogpng.png -------------------------------------------------------------------------------- /test/stubs-2602/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2602/index.njk -------------------------------------------------------------------------------- /test/stubs-2753/_data/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2753/_data/global.js -------------------------------------------------------------------------------- /test/stubs-2753/page1.njk: -------------------------------------------------------------------------------- 1 | {{ global }} -------------------------------------------------------------------------------- /test/stubs-2753/page2.njk: -------------------------------------------------------------------------------- 1 | {{ global }} -------------------------------------------------------------------------------- /test/stubs-2790/page.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2790/page.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-2851/content.njk: -------------------------------------------------------------------------------- 1 | --- 2 | tags: ['tag with spaces'] 3 | --- -------------------------------------------------------------------------------- /test/stubs-2851/paginated.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-2851/paginated.njk -------------------------------------------------------------------------------- /test/stubs-3013/html/_data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/html/_data/books.json -------------------------------------------------------------------------------- /test/stubs-3013/html/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/html/_includes/base.html -------------------------------------------------------------------------------- /test/stubs-3013/html/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/html/book.html -------------------------------------------------------------------------------- /test/stubs-3013/liquid/_data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/liquid/_data/books.json -------------------------------------------------------------------------------- /test/stubs-3013/liquid/_includes/base.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/liquid/_includes/base.liquid -------------------------------------------------------------------------------- /test/stubs-3013/liquid/book.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/liquid/book.liquid -------------------------------------------------------------------------------- /test/stubs-3013/md/_data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/md/_data/books.json -------------------------------------------------------------------------------- /test/stubs-3013/md/_includes/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/md/_includes/base.md -------------------------------------------------------------------------------- /test/stubs-3013/md/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/md/book.md -------------------------------------------------------------------------------- /test/stubs-3013/njk/_data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/njk/_data/books.json -------------------------------------------------------------------------------- /test/stubs-3013/njk/_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/njk/_includes/base.njk -------------------------------------------------------------------------------- /test/stubs-3013/njk/book.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3013/njk/book.njk -------------------------------------------------------------------------------- /test/stubs-3285/src/scripts/hello-world.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | console.log('hello world'); 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-337/data/xyz.json: -------------------------------------------------------------------------------- 1 | { 2 | "hi": "bye" 3 | } -------------------------------------------------------------------------------- /test/stubs-337/src/empty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-3807/Issue3807test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3807/Issue3807test.js -------------------------------------------------------------------------------- /test/stubs-3807/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3807/_layouts/base.html -------------------------------------------------------------------------------- /test/stubs-3807/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3807/_layouts/home.html -------------------------------------------------------------------------------- /test/stubs-3807/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3807/eleventy.config.js -------------------------------------------------------------------------------- /test/stubs-3807/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home.html 3 | --- 4 | Index -------------------------------------------------------------------------------- /test/stubs-3810/_includes/promo.njk: -------------------------------------------------------------------------------- 1 |

Sign up for our {{ promoType }}!

-------------------------------------------------------------------------------- /test/stubs-3810/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-3810/eleventy.config.js -------------------------------------------------------------------------------- /test/stubs-3810/index.md: -------------------------------------------------------------------------------- 1 | {% promo "newsletter" %} -------------------------------------------------------------------------------- /test/stubs-403/.eleventyignore: -------------------------------------------------------------------------------- 1 | ./_includes/** -------------------------------------------------------------------------------- /test/stubs-403/_includes/include.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-403/template.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-408-sass/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-408-sass/_code.scss -------------------------------------------------------------------------------- /test/stubs-408-sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-408-sass/style.scss -------------------------------------------------------------------------------- /test/stubs-413/date-frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-413/date-frontmatter.md -------------------------------------------------------------------------------- /test/stubs-434/_includes/macros-filter.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-434/_includes/macros-filter.njk -------------------------------------------------------------------------------- /test/stubs-434/_includes/macros.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-434/_includes/macros.njk -------------------------------------------------------------------------------- /test/stubs-475/_includes/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-475/_includes/layout.njk -------------------------------------------------------------------------------- /test/stubs-630/_data/globalData0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/globalData0.cjs -------------------------------------------------------------------------------- /test/stubs-630/_data/globalData1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/globalData1.cjs -------------------------------------------------------------------------------- /test/stubs-630/_data/globalData2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/globalData2.json -------------------------------------------------------------------------------- /test/stubs-630/_data/globalData3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/globalData3.yaml -------------------------------------------------------------------------------- /test/stubs-630/_data/globalData4.nosj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/globalData4.nosj -------------------------------------------------------------------------------- /test/stubs-630/_data/mergingGlobalData.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/mergingGlobalData.cjs -------------------------------------------------------------------------------- /test/stubs-630/_data/mergingGlobalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/mergingGlobalData.js -------------------------------------------------------------------------------- /test/stubs-630/_data/mergingGlobalData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/mergingGlobalData.json -------------------------------------------------------------------------------- /test/stubs-630/_data/mergingGlobalData.nosj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/mergingGlobalData.nosj -------------------------------------------------------------------------------- /test/stubs-630/_data/mergingGlobalData.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/mergingGlobalData.yaml -------------------------------------------------------------------------------- /test/stubs-630/_data/subdir/globalDataSubdir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/_data/subdir/globalDataSubdir.yaml -------------------------------------------------------------------------------- /test/stubs-630/component-yaml/component.11tydata.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | jsKey1: "js1" 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-630/component-yaml/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/component-yaml/component.json -------------------------------------------------------------------------------- /test/stubs-630/component-yaml/component.njk: -------------------------------------------------------------------------------- 1 | {{localkeyOverride}} -------------------------------------------------------------------------------- /test/stubs-630/component-yaml/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-630/component-yaml/component.yaml -------------------------------------------------------------------------------- /test/stubs-670/content.njk: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - Cañon City 4 | --- -------------------------------------------------------------------------------- /test/stubs-670/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-670/index.njk -------------------------------------------------------------------------------- /test/stubs-919/test.11tydata.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-919/test.11tydata.cjs -------------------------------------------------------------------------------- /test/stubs-919/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-919/test.njk -------------------------------------------------------------------------------- /test/stubs-919/test2.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-absolute/test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-addglobaldata-noop/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-addglobaldata/test.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-autocopy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-autocopy/possum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-autocopy/possum.jpg -------------------------------------------------------------------------------- /test/stubs-autocopy/possum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-autocopy/possum.png -------------------------------------------------------------------------------- /test/stubs-base-case-sens/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-base-case-sens/index.njk -------------------------------------------------------------------------------- /test/stubs-base/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-base/index.njk -------------------------------------------------------------------------------- /test/stubs-computed-array/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-array/test.liquid -------------------------------------------------------------------------------- /test/stubs-computed-collections-filter/dog.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-collections-filter/dog.njk -------------------------------------------------------------------------------- /test/stubs-computed-collections/collections.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-collections/collections.njk -------------------------------------------------------------------------------- /test/stubs-computed-collections/dog.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-collections/dog.njk -------------------------------------------------------------------------------- /test/stubs-computed-dirdata/dir/dir.11tydata.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-dirdata/dir/dir.11tydata.cjs -------------------------------------------------------------------------------- /test/stubs-computed-dirdata/dir/first.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-dirdata/dir/first.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-computed-dirdata/dir/second.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-dirdata/dir/second.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-computed-global/intermix.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-global/intermix.njk -------------------------------------------------------------------------------- /test/stubs-computed-pagination/child.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-pagination/child.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-computed-pagination/paginated.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-pagination/paginated.njk -------------------------------------------------------------------------------- /test/stubs-computed-symbolparse/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-symbolparse/test.liquid -------------------------------------------------------------------------------- /test/stubs-computed-symbolparse/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-computed-symbolparse/test.njk -------------------------------------------------------------------------------- /test/stubs-custom-extension/test.js1: -------------------------------------------------------------------------------- 1 |

Paragraph

-------------------------------------------------------------------------------- /test/stubs-data-cascade/global-versus-layout/_data/cascade.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "from-global-data"; 2 | -------------------------------------------------------------------------------- /test/stubs-data-cascade/global-versus-layout/_includes/base.njk: -------------------------------------------------------------------------------- 1 | --- 2 | cascade: "from-layout-file" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/global-versus-layout/test.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.njk" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-data-files/_includes/base.njk: -------------------------------------------------------------------------------- 1 | --- 2 | shared: layout 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-data-files/test.11tydata.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | shared: "datafile" 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-data-files/test.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base.njk 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-dirdatafile/src/_includes/base.njk: -------------------------------------------------------------------------------- 1 | --- 2 | cascade: "from-layout-file" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-dirdatafile/src/src.11tydata.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | cascade: "dir-data-file", 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-dirdatafile/src/test.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.njk" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-tmpldatafile/_includes/base.njk: -------------------------------------------------------------------------------- 1 | --- 2 | cascade: "from-layout-file" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-tmpldatafile/test.11tydata.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | cascade: "template-data-file", 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-data-cascade/layout-versus-tmpldatafile/test.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.njk" 3 | --- -------------------------------------------------------------------------------- /test/stubs-data-esm/_data/commonjs.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "commonjs default"; -------------------------------------------------------------------------------- /test/stubs-data-esm/_data/module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-data-esm/_data/module.mjs -------------------------------------------------------------------------------- /test/stubs-dependency-tree/child.cjs: -------------------------------------------------------------------------------- 1 | require("./grandchild.cjs"); 2 | -------------------------------------------------------------------------------- /test/stubs-dependency-tree/grandchild.cjs: -------------------------------------------------------------------------------- 1 | require("kleur"); 2 | -------------------------------------------------------------------------------- /test/stubs-dependency-tree/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-dependency-tree/index.cjs -------------------------------------------------------------------------------- /test/stubs-empty-json-data/_data/empty.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/stubs-empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-fancyjs/test.11ty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-fancyjs/test.11ty.tsx -------------------------------------------------------------------------------- /test/stubs-fancyjs/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-fancyjs/test.mdx -------------------------------------------------------------------------------- /test/stubs-global-data-config-api-nested/_data/deep.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | existing: true, 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs-global-data-config-api/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-i18n/en-us/index.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-i18n/en-us/index.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-i18n/en/index.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-i18n/en/index.liquid -------------------------------------------------------------------------------- /test/stubs-i18n/es/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-i18n/es/index.njk -------------------------------------------------------------------------------- /test/stubs-i18n/non-lang-file.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-i18n/non-lang-file.njk -------------------------------------------------------------------------------- /test/stubs-img-transform/ignored.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-img-transform/ignored.md -------------------------------------------------------------------------------- /test/stubs-img-transform/missing-alt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-img-transform/multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-img-transform/multiple.md -------------------------------------------------------------------------------- /test/stubs-img-transform/possum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-img-transform/possum.png -------------------------------------------------------------------------------- /test/stubs-img-transform/single.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-img-transform/single.md -------------------------------------------------------------------------------- /test/stubs-incremental/layout-chain/_includes/base.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: parent.njk 3 | --- -------------------------------------------------------------------------------- /test/stubs-incremental/layout-chain/_includes/parent.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-incremental/layout-chain/test.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base.njk 3 | --- -------------------------------------------------------------------------------- /test/stubs-layout-cache/_includes/layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-layout-cache/_includes/layout.liquid -------------------------------------------------------------------------------- /test/stubs-layout-cache/_includes/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-layout-cache/_includes/layout.njk -------------------------------------------------------------------------------- /test/stubs-layout-cache/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-layout-cache/test.liquid -------------------------------------------------------------------------------- /test/stubs-layout-cache/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-layout-cache/test.njk -------------------------------------------------------------------------------- /test/stubs-layouts-event/_includes/first.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-layouts-event/_includes/first.liquid -------------------------------------------------------------------------------- /test/stubs-layouts-event/_includes/second.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | layout: third.liquid 3 | --- 4 | {{ content }} -------------------------------------------------------------------------------- /test/stubs-layouts-event/_includes/third.liquid: -------------------------------------------------------------------------------- 1 | {{ content }} -------------------------------------------------------------------------------- /test/stubs-layouts-event/page.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: first 3 | --- 4 | -------------------------------------------------------------------------------- /test/stubs-njk-async/_includes/loop.njk: -------------------------------------------------------------------------------- 1 | included_{{item}}-{% genericshortcode item %} -------------------------------------------------------------------------------- /test/stubs-pagination-computed-quotes-njk/post.njk: -------------------------------------------------------------------------------- 1 | --- 2 | tags: posts 3 | --- 4 | No -------------------------------------------------------------------------------- /test/stubs-pagination-computed-quotes/post.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | tags: posts 3 | --- 4 | No -------------------------------------------------------------------------------- /test/stubs-pagination-computed-quotes/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-pagination-computed-quotes/test.liquid -------------------------------------------------------------------------------- /test/stubs-pathtourl/css.njk: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: output.css 3 | --- -------------------------------------------------------------------------------- /test/stubs-pathtourl/filter.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-pathtourl/filter.njk -------------------------------------------------------------------------------- /test/stubs-pathtourl/tmpl.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-pathtourl/transform.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-pathtourl/transform.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/11tyjs-file-override.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/11tyjs-file-override.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/11tyjs-file.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/11tyjs-file.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/11tyjs.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/11tyjs.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/_includes/include-js.txt: -------------------------------------------------------------------------------- 1 | module.exports = "TESTING"; 2 | -------------------------------------------------------------------------------- /test/stubs-render-plugin/_includes/include.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "TESTING"; 2 | -------------------------------------------------------------------------------- /test/stubs-render-plugin/_includes/include.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/_includes/include.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/_includes/include.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/_includes/include.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/bad-data.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/bad-data.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/capture-liquid.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/capture-liquid.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/capture-njk.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/capture-njk.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/false.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/false.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-direct.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-direct.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-eleventy.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-eleventy.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-global.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-global.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-md.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-md.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-md.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-page.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid-page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid-page.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/liquid.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/liquid.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/md.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/njk-eleventy.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/njk-eleventy.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/njk-file.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/njk-file.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/njk-file.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/njk-file.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/njk-page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/njk-page.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/nunjucks-frontmatter.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/nunjucks-frontmatter.njk -------------------------------------------------------------------------------- /test/stubs-render-plugin/nunjucks-global.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/nunjucks-global.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/nunjucks.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/nunjucks.11ty.cjs -------------------------------------------------------------------------------- /test/stubs-render-plugin/nunjucks.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/nunjucks.liquid -------------------------------------------------------------------------------- /test/stubs-render-plugin/vue.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-render-plugin/vue.liquid -------------------------------------------------------------------------------- /test/stubs-virtual-nowrite/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-virtual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs-virtual/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs-virtual/eleventy.config.js -------------------------------------------------------------------------------- /test/stubs/.eleventyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/.eleventyignore -------------------------------------------------------------------------------- /test/stubs/2016-02-01-permalinkdate.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/2016-02-01-permalinkdate.liquid -------------------------------------------------------------------------------- /test/stubs/_data/globalData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/globalData.json -------------------------------------------------------------------------------- /test/stubs/_data/globalData2.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | datakeyfromjs: "howdy" 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/_data/globalDataFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/globalDataFn.js -------------------------------------------------------------------------------- /test/stubs/_data/globalDataFnCJS.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/globalDataFnCJS.cjs -------------------------------------------------------------------------------- /test/stubs/_data/subdir/testDataSubdir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/subdir/testDataSubdir.json -------------------------------------------------------------------------------- /test/stubs/_data/testData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/testData.json -------------------------------------------------------------------------------- /test/stubs/_data/testDataLiquid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_data/testDataLiquid.json -------------------------------------------------------------------------------- /test/stubs/_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/base.njk -------------------------------------------------------------------------------- /test/stubs/_includes/custom-filter.liquid: -------------------------------------------------------------------------------- 1 | {{ name | makeItFoo }} -------------------------------------------------------------------------------- /test/stubs/_includes/default.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/_includes/defaultLayout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/defaultLayout.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/imports.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/imports.njk -------------------------------------------------------------------------------- /test/stubs/_includes/included-data.html: -------------------------------------------------------------------------------- 1 | This is an include. {{ myVariable }} 2 | -------------------------------------------------------------------------------- /test/stubs/_includes/included-relative.njk: -------------------------------------------------------------------------------- 1 | akdlsjafkljdskl -------------------------------------------------------------------------------- /test/stubs/_includes/included.html: -------------------------------------------------------------------------------- 1 | This is an include. -------------------------------------------------------------------------------- /test/stubs/_includes/included.liquid: -------------------------------------------------------------------------------- 1 | This is an include. -------------------------------------------------------------------------------- /test/stubs/_includes/included.njk: -------------------------------------------------------------------------------- 1 | This is an include. -------------------------------------------------------------------------------- /test/stubs/_includes/included.nunj: -------------------------------------------------------------------------------- 1 | Nunjabusiness -------------------------------------------------------------------------------- /test/stubs/_includes/layout-a.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/layout-a.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/layout-b.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/layout-b.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/layoutLiquid.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/layoutLiquid.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/layouts/div-wrapper-layout.njk: -------------------------------------------------------------------------------- 1 |
{{ content }}
-------------------------------------------------------------------------------- /test/stubs/_includes/layouts/inasubdir.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/_includes/layouts/issue-115.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/layouts/issue-115.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/layouts/post.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/_includes/layouts/templateMapCollection.njk: -------------------------------------------------------------------------------- 1 | --- 2 | upstream: Inherited 3 | --- 4 | 5 | {{ content | safe }} -------------------------------------------------------------------------------- /test/stubs/_includes/multiple.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/_includes/multiple.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/_includes/mylocallayout.njk: -------------------------------------------------------------------------------- 1 |
{{ content | safe }}
2 | -------------------------------------------------------------------------------- /test/stubs/_includes/permalink-data-layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/permalink-data-layout.njk -------------------------------------------------------------------------------- /test/stubs/_includes/permalink-in-layout/layout.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: hello/index.html 3 | --- 4 | {{ content }} -------------------------------------------------------------------------------- /test/stubs/_includes/scopeleak.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/_includes/scopeleak.liquid -------------------------------------------------------------------------------- /test/stubs/_includes/subfolder/included.html: -------------------------------------------------------------------------------- 1 | This is an include. -------------------------------------------------------------------------------- /test/stubs/_includes/subfolder/included.liquid: -------------------------------------------------------------------------------- 1 | This is an include. -------------------------------------------------------------------------------- /test/stubs/_includes/subfolder/included.nunj: -------------------------------------------------------------------------------- 1 | Nunjabusiness2 -------------------------------------------------------------------------------- /test/stubs/_includes/test.js: -------------------------------------------------------------------------------- 1 | /* THIS IS A COMMENT */ alert("Issue #398"); 2 | -------------------------------------------------------------------------------- /test/stubs/_layouts/layoutsdefault.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/add-extension/test.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/add-extension/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/broken-config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/broken-config.cjs -------------------------------------------------------------------------------- /test/stubs/buffer.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = Buffer.from("

tést

"); 2 | -------------------------------------------------------------------------------- /test/stubs/cfg-directories-export-cjs/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/cfg-directories-export/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/class-async-data-fn.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-async-data-fn.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-async-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-async-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-async.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-async.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-buffer.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-buffer.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-fn-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-fn-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-fn-shorthand.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-fn-shorthand.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-fn.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-fn.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-permalink-buffer.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-permalink-buffer.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-permalink-fn.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-permalink-fn.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data-permalink.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data-permalink.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-data.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-data.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-fns-has-page.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-fns-has-page.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-fns.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-fns.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-norender.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-norender.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class-with-dep-upstream.js: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/class-with-dep.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class-with-dep.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/class.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/class.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/classfields-data.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/classfields-data.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/cmd-help-processing/_data/test.js: -------------------------------------------------------------------------------- 1 | console.log("THIS SHOULD NOT LOG TO CONSOLE"); 2 | module.exports = []; 3 | -------------------------------------------------------------------------------- /test/stubs/collection-layout-wrap.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection-layout-wrap.njk -------------------------------------------------------------------------------- /test/stubs/collection-layout/dog1.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - dog 4 | --- -------------------------------------------------------------------------------- /test/stubs/collection-layout/template.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection-layout/template.liquid -------------------------------------------------------------------------------- /test/stubs/collection-slug/dog1.njk: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - dog 4 | --- -------------------------------------------------------------------------------- /test/stubs/collection-slug/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection-slug/template.njk -------------------------------------------------------------------------------- /test/stubs/collection-template/_includes/layout.liquid: -------------------------------------------------------------------------------- 1 | Layout 2 | 3 | {{ content }} -------------------------------------------------------------------------------- /test/stubs/collection-template/dog1.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - dog 4 | --- -------------------------------------------------------------------------------- /test/stubs/collection-template/template.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection-template/template.liquid -------------------------------------------------------------------------------- /test/stubs/collection/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test1.md -------------------------------------------------------------------------------- /test/stubs/collection/test10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test10.md -------------------------------------------------------------------------------- /test/stubs/collection/test2.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: cat 3 | --- 4 | 5 | # Test 2 6 | -------------------------------------------------------------------------------- /test/stubs/collection/test3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test3.md -------------------------------------------------------------------------------- /test/stubs/collection/test4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test4.md -------------------------------------------------------------------------------- /test/stubs/collection/test5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test5.md -------------------------------------------------------------------------------- /test/stubs/collection/test6.html: -------------------------------------------------------------------------------- 1 | # Test 6 2 | -------------------------------------------------------------------------------- /test/stubs/collection/test7.njk: -------------------------------------------------------------------------------- 1 | # Test 7 -------------------------------------------------------------------------------- /test/stubs/collection/test8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test8.md -------------------------------------------------------------------------------- /test/stubs/collection/test9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection/test9.md -------------------------------------------------------------------------------- /test/stubs/collection2/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection2/test1.md -------------------------------------------------------------------------------- /test/stubs/collection2/test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/collection2/test2.md -------------------------------------------------------------------------------- /test/stubs/component-async/component.njk: -------------------------------------------------------------------------------- 1 | {{localdatakey1}} -------------------------------------------------------------------------------- /test/stubs/component/component.11tydata.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/component/component.11tydata.cjs -------------------------------------------------------------------------------- /test/stubs/component/component.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/component/component.11tydata.js -------------------------------------------------------------------------------- /test/stubs/component/component.11tydata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/component/component.11tydata.json -------------------------------------------------------------------------------- /test/stubs/component/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/component/component.json -------------------------------------------------------------------------------- /test/stubs/component/component.njk: -------------------------------------------------------------------------------- 1 | {{localdatakey1}} -------------------------------------------------------------------------------- /test/stubs/config-deps-upstream.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/config-deps.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/config-deps.cjs -------------------------------------------------------------------------------- /test/stubs/config-empty-pathprefix.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/config-empty-pathprefix.cjs -------------------------------------------------------------------------------- /test/stubs/config-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/config-promise.js -------------------------------------------------------------------------------- /test/stubs/config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/config.cjs -------------------------------------------------------------------------------- /test/stubs/custom-extension-no-permalink.txt: -------------------------------------------------------------------------------- 1 | Sample content -------------------------------------------------------------------------------- /test/stubs/custom-extension.txt: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: custom-extension.lit 3 | --- 4 | Sample content -------------------------------------------------------------------------------- /test/stubs/custom-frontmatter/template-toml.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/custom-frontmatter/template-toml.njk -------------------------------------------------------------------------------- /test/stubs/custom-frontmatter/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/custom-frontmatter/template.njk -------------------------------------------------------------------------------- /test/stubs/data-cascade/template.11tydata.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/data-cascade/template.11tydata.cjs -------------------------------------------------------------------------------- /test/stubs/data-cascade/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/data-cascade/template.njk -------------------------------------------------------------------------------- /test/stubs/datafiledoesnotexist/template.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/dates/2018-01-01-file5.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: dateTestTag 3 | --- 4 | -------------------------------------------------------------------------------- /test/stubs/dates/2019-01-01-folder/2020-01-01-file.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /test/stubs/dates/file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dates/file1.md -------------------------------------------------------------------------------- /test/stubs/dates/file2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dates/file2.md -------------------------------------------------------------------------------- /test/stubs/dates/file2b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dates/file2b.md -------------------------------------------------------------------------------- /test/stubs/dates/file3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dates/file3.md -------------------------------------------------------------------------------- /test/stubs/dates/file4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dates/file4.md -------------------------------------------------------------------------------- /test/stubs/default-export-and-others.11ty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/default-export-and-others.11ty.js -------------------------------------------------------------------------------- /test/stubs/default-frontmatter.txt: -------------------------------------------------------------------------------- 1 | --- 2 | frontmatter: 1 3 | --- 4 | hi -------------------------------------------------------------------------------- /test/stubs/default-no-liquid.md: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /test/stubs/default.liquid: -------------------------------------------------------------------------------- 1 | {{ "hi" }} -------------------------------------------------------------------------------- /test/stubs/default.md: -------------------------------------------------------------------------------- 1 | {{ "hi" }} 2 | -------------------------------------------------------------------------------- /test/stubs/dependencies/dep1.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/dependencies/dep2.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/dependencies/two-deps.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dependencies/two-deps.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/deps/dep1.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/deps/dep2.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /test/stubs/dynamic-permalink/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/dynamic-permalink/test.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/first.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/first.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/override-reuse.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/override-reuse.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/override.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/override.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/permalink-slug.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/permalink-slug.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/permalink.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/permalink.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/second.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/second.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/third.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/third.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/true.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/true.njk -------------------------------------------------------------------------------- /test/stubs/eleventyComputed/use-global-data.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyComputed/use-global-data.njk -------------------------------------------------------------------------------- /test/stubs/eleventyExcludeFromCollections.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/eleventyExcludeFromCollections.njk -------------------------------------------------------------------------------- /test/stubs/engine-singletons/first.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/engine-singletons/second.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/exitCode/failure.njk: -------------------------------------------------------------------------------- 1 | {{ test() }} -------------------------------------------------------------------------------- /test/stubs/exitCode_globalData/_data/test.js: -------------------------------------------------------------------------------- 1 | module.exports = async function () { 2 | throw new Error("Testing"); 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/exitCode_globalData/test.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/exitCode_success/success.njk: -------------------------------------------------------------------------------- 1 | {{ "hi" }} -------------------------------------------------------------------------------- /test/stubs/exports-flatdata.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/exports-flatdata.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/fileslug.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function(data) { 2 | return `

${data.page.fileSlug}

`; 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/firstdir/seconddir/component.njk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/formatTest.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/formatTest.liquid -------------------------------------------------------------------------------- /test/stubs/frontmatter-date/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/frontmatter-date/test.liquid -------------------------------------------------------------------------------- /test/stubs/frontmatter-date/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/frontmatter-date/test.njk -------------------------------------------------------------------------------- /test/stubs/function-arrow.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = ({ name }) => `

${name}

`; 2 | -------------------------------------------------------------------------------- /test/stubs/function-async-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-async-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-async.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-async.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-buffer.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function(data) { 2 | return Buffer.from(`

${data.name}

`); 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/function-filter.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-filter.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-fns.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-fns.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-markdown.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function(data) { 2 | return `# ${data.name}`; 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/function-prototype.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-prototype.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-throws-async.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-throws-async.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function-throws.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/function-throws.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/function.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = function(data) { 2 | return `

${data.name}

`; 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/glob-pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/glob-pages/about.md -------------------------------------------------------------------------------- /test/stubs/glob-pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/glob-pages/contact.md -------------------------------------------------------------------------------- /test/stubs/glob-pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/glob-pages/home.md -------------------------------------------------------------------------------- /test/stubs/global-dash-variable.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/global-dash-variable.liquid -------------------------------------------------------------------------------- /test/stubs/globby/_includes/include.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/globby/test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/ignore-dedupe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/ignore-dedupe/.gitignore -------------------------------------------------------------------------------- /test/stubs/ignore1/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignore2/.gitignore: -------------------------------------------------------------------------------- 1 | thisshouldnotexist12345 -------------------------------------------------------------------------------- /test/stubs/ignore2/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignore3/.eleventyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/ignore3/.eleventyignore -------------------------------------------------------------------------------- /test/stubs/ignore3/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignore4/.eleventyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/ignore4/.eleventyignore -------------------------------------------------------------------------------- /test/stubs/ignore4/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignore5/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/ignore5/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignore6/.eleventyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/ignore6/.eleventyignore -------------------------------------------------------------------------------- /test/stubs/ignore6/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/ignore6/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | # This should be ignored 2 | -------------------------------------------------------------------------------- /test/stubs/ignorelocalroot/.eleventyignore: -------------------------------------------------------------------------------- 1 | test.md -------------------------------------------------------------------------------- /test/stubs/ignorelocalrootgitignore/.eleventyignore: -------------------------------------------------------------------------------- 1 | test.md -------------------------------------------------------------------------------- /test/stubs/ignorelocalrootgitignore/.gitignore: -------------------------------------------------------------------------------- 1 | thisshouldnotexist12345 -------------------------------------------------------------------------------- /test/stubs/img/stub.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/stubs/included.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/included.liquid -------------------------------------------------------------------------------- /test/stubs/includer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/includer.liquid -------------------------------------------------------------------------------- /test/stubs/includesemptystring.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/index.html -------------------------------------------------------------------------------- /test/stubs/index.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/issue-115/index-with-layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-115/index-with-layout.liquid -------------------------------------------------------------------------------- /test/stubs/issue-115/index.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-115/index.liquid -------------------------------------------------------------------------------- /test/stubs/issue-115/template-bars.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-115/template-bars.liquid -------------------------------------------------------------------------------- /test/stubs/issue-115/template-foos.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-115/template-foos.liquid -------------------------------------------------------------------------------- /test/stubs/issue-135/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-135/template.json -------------------------------------------------------------------------------- /test/stubs/issue-135/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-135/template.njk -------------------------------------------------------------------------------- /test/stubs/issue-522/excluded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/issue-522/excluded.md -------------------------------------------------------------------------------- /test/stubs/issue-522/template.md: -------------------------------------------------------------------------------- 1 | # Test 2 | -------------------------------------------------------------------------------- /test/stubs/issue-95/cat.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: 3 | - cat 4 | --- 5 | 6 | # Test 8 7 | -------------------------------------------------------------------------------- /test/stubs/issue-95/notacat.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: notacat 3 | --- 4 | 5 | # Test 8 6 | -------------------------------------------------------------------------------- /test/stubs/layout-permalink-difflang/test.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: test.njk 3 | templateEngineOverride: md 4 | --- 5 | 6 | # Title 7 | -------------------------------------------------------------------------------- /test/stubs/layoutsemptystring.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/local-data-tags/component.11tydata.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tags: "tag3" 3 | }; 4 | -------------------------------------------------------------------------------- /test/stubs/local-data-tags/component.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/local-data-tags/component.njk -------------------------------------------------------------------------------- /test/stubs/multiple-ignores/.eleventyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/multiple-ignores/.eleventyignore -------------------------------------------------------------------------------- /test/stubs/multiple-ignores/ignoredFolder/ignored.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/multiple-ignores/subfolder/ignoredFolder2/ignored2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/multipleexports-promises.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/multipleexports-promises.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/multipleexports.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/multipleexports.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/njk-relative/dir/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/njk-relative/dir/base.njk -------------------------------------------------------------------------------- /test/stubs/njk-relative/dir/imports.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/njk-relative/dir/imports.njk -------------------------------------------------------------------------------- /test/stubs/njk-relative/dir/included.njk: -------------------------------------------------------------------------------- 1 | HELLO FROM THE OTHER SIDE. -------------------------------------------------------------------------------- /test/stubs/njk-relative/dir/unique-include-123.njk: -------------------------------------------------------------------------------- 1 | HELLO FROM THE OTHER SIDE. -------------------------------------------------------------------------------- /test/stubs/object-norender.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/object-norender.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/object.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/object.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/oneinstance.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/oneinstance.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/overrides/layout.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/layout.njk -------------------------------------------------------------------------------- /test/stubs/overrides/layoutfalse.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/layoutfalse.njk -------------------------------------------------------------------------------- /test/stubs/overrides/page-templatesyntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/page-templatesyntax.md -------------------------------------------------------------------------------- /test/stubs/overrides/test-bypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-bypass.md -------------------------------------------------------------------------------- /test/stubs/overrides/test-empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-empty.html -------------------------------------------------------------------------------- /test/stubs/overrides/test-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-empty.md -------------------------------------------------------------------------------- /test/stubs/overrides/test-error.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-error.njk -------------------------------------------------------------------------------- /test/stubs/overrides/test-md.liquid: -------------------------------------------------------------------------------- 1 | --- 2 | templateEngineOverride: md 3 | --- 4 | # My Title 5 | -------------------------------------------------------------------------------- /test/stubs/overrides/test-multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-multiple.md -------------------------------------------------------------------------------- /test/stubs/overrides/test-multiple2.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-multiple2.njk -------------------------------------------------------------------------------- /test/stubs/overrides/test-njk.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test-njk.liquid -------------------------------------------------------------------------------- /test/stubs/overrides/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test.html -------------------------------------------------------------------------------- /test/stubs/overrides/test.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test.liquid -------------------------------------------------------------------------------- /test/stubs/overrides/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/overrides/test.md -------------------------------------------------------------------------------- /test/stubs/page-target-collections/tagpages.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/page-target-collections/tagpages.njk -------------------------------------------------------------------------------- /test/stubs/paged/collection/consumer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/collection/consumer.njk -------------------------------------------------------------------------------- /test/stubs/paged/collection/main.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/collection/main.njk -------------------------------------------------------------------------------- /test/stubs/paged/collection/test1.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/collection/test1.njk -------------------------------------------------------------------------------- /test/stubs/paged/collection/test2.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/collection/test2.njk -------------------------------------------------------------------------------- /test/stubs/paged/collection/test3.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/collection/test3.njk -------------------------------------------------------------------------------- /test/stubs/paged/notpaged.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/notpaged.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged-before-and-reverse.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged-before-and-reverse.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged-before-filter.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged-before-filter.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged-before-metadata.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged-before-metadata.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged-before.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged-before.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged-empty.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged-empty.njk -------------------------------------------------------------------------------- /test/stubs/paged/paged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged.json -------------------------------------------------------------------------------- /test/stubs/paged/paged.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/paged.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedalias.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedalias.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedaliassize2.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedaliassize2.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedinlinedata-reverse.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedinlinedata-reverse.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedinlinedata.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedinlinedata.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedobject.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedobject.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedobjectfilterarray.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedobjectfilterarray.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedobjectfilterstring.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedobjectfilterstring.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedobjectvalues.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedobjectvalues.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedpermalink.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedpermalink.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedpermalinkif.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedpermalinkif.liquid -------------------------------------------------------------------------------- /test/stubs/paged/pagedpermalinkif.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedpermalinkif.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedpermalinknumeric.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedpermalinknumeric.njk -------------------------------------------------------------------------------- /test/stubs/paged/pagedresolve.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/paged/pagedresolve.njk -------------------------------------------------------------------------------- /test/stubs/pagedate.liquid: -------------------------------------------------------------------------------- 1 | {{ page.date }} -------------------------------------------------------------------------------- /test/stubs/pagedate.njk: -------------------------------------------------------------------------------- 1 | {{ page.date }} -------------------------------------------------------------------------------- /test/stubs/pagedateutc.njk: -------------------------------------------------------------------------------- 1 | {{ page.date.toUTCString() }} -------------------------------------------------------------------------------- /test/stubs/pagination-templatecontent/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/pagination-templatecontent/index.njk -------------------------------------------------------------------------------- /test/stubs/pagination-templatecontent/post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/pagination-templatecontent/post-1.md -------------------------------------------------------------------------------- /test/stubs/pagination-templatecontent/post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/pagination-templatecontent/post-2.md -------------------------------------------------------------------------------- /test/stubs/permalink-build/permalink-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-build/permalink-build.md -------------------------------------------------------------------------------- /test/stubs/permalink-conflicts-false/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-conflicts-false/test1.md -------------------------------------------------------------------------------- /test/stubs/permalink-conflicts-false/test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-conflicts-false/test2.md -------------------------------------------------------------------------------- /test/stubs/permalink-conflicts/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-conflicts/test1.md -------------------------------------------------------------------------------- /test/stubs/permalink-conflicts/test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-conflicts/test2.md -------------------------------------------------------------------------------- /test/stubs/permalink-conflicts/test3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-conflicts/test3.md -------------------------------------------------------------------------------- /test/stubs/permalink-data-layout/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-data-layout/test.json -------------------------------------------------------------------------------- /test/stubs/permalink-data-layout/test.njk: -------------------------------------------------------------------------------- 1 | Test 1:{{ page.fileSlug }} -------------------------------------------------------------------------------- /test/stubs/permalink-false-computed/test.md: -------------------------------------------------------------------------------- 1 | --- 2 | eleventyComputed: 3 | permalink: false 4 | --- 5 | 6 | This shouldn’t write 7 | -------------------------------------------------------------------------------- /test/stubs/permalink-false/test.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: false 3 | --- 4 | 5 | This shouldn’t write 6 | -------------------------------------------------------------------------------- /test/stubs/permalink-in-layout-fileslug.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-in-layout-fileslug.liquid -------------------------------------------------------------------------------- /test/stubs/permalink-in-layout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-in-layout.liquid -------------------------------------------------------------------------------- /test/stubs/permalink-markdown-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-markdown-override.md -------------------------------------------------------------------------------- /test/stubs/permalink-markdown-var.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-markdown-var.md -------------------------------------------------------------------------------- /test/stubs/permalink-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalink-markdown.md -------------------------------------------------------------------------------- /test/stubs/permalink-true/permalink-true.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: true 3 | --- 4 | 5 | This should throw an error. 6 | -------------------------------------------------------------------------------- /test/stubs/permalinkdata-jsfn.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalinkdata-jsfn.njk -------------------------------------------------------------------------------- /test/stubs/permalinkdata-jspermalinkfn.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalinkdata-jspermalinkfn.njk -------------------------------------------------------------------------------- /test/stubs/permalinkdata.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalinkdata.njk -------------------------------------------------------------------------------- /test/stubs/permalinkdate.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalinkdate.liquid -------------------------------------------------------------------------------- /test/stubs/permalinked.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/permalinked.liquid -------------------------------------------------------------------------------- /test/stubs/posts/post1.njk: -------------------------------------------------------------------------------- 1 | Post1 2 | -------------------------------------------------------------------------------- /test/stubs/posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/posts/posts.json -------------------------------------------------------------------------------- /test/stubs/posts/posts.njk: -------------------------------------------------------------------------------- 1 | Posts 2 | -------------------------------------------------------------------------------- /test/stubs/prematureTemplateContent/test.liquid: -------------------------------------------------------------------------------- 1 | {{ collections.all[0].templateContent }} -------------------------------------------------------------------------------- /test/stubs/prematureTemplateContent/test.md: -------------------------------------------------------------------------------- 1 | {{ sample.templateContent }} 2 | -------------------------------------------------------------------------------- /test/stubs/prematureTemplateContent/test.njk: -------------------------------------------------------------------------------- 1 | {{ sample.templateContent }} -------------------------------------------------------------------------------- /test/stubs/promise.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/promise.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/public/test.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/relative-liquid/dir/included.liquid: -------------------------------------------------------------------------------- 1 | TIME IS RELATIVE. -------------------------------------------------------------------------------- /test/stubs/reuse-permalink/reuse-permalink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/reuse-permalink/reuse-permalink.json -------------------------------------------------------------------------------- /test/stubs/reuse-permalink/test1.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/reuse-permalink/test1.liquid -------------------------------------------------------------------------------- /test/stubs/script-frontmatter/test-default.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/script-frontmatter/test-default.njk -------------------------------------------------------------------------------- /test/stubs/script-frontmatter/test-js.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/script-frontmatter/test-js.njk -------------------------------------------------------------------------------- /test/stubs/script-frontmatter/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/script-frontmatter/test.njk -------------------------------------------------------------------------------- /test/stubs/string.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/string.11ty.custom: -------------------------------------------------------------------------------- 1 | export default "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/string.11ty.possum: -------------------------------------------------------------------------------- 1 | export default "

Possum

"; 2 | -------------------------------------------------------------------------------- /test/stubs/stubs-virtual-conflict/virtual.md: -------------------------------------------------------------------------------- 1 | # This is on the file system -------------------------------------------------------------------------------- /test/stubs/subdir/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/subdir/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/subfolder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/subfolder/subfolder.liquid: -------------------------------------------------------------------------------- 1 | subfolder -------------------------------------------------------------------------------- /test/stubs/subfolder/subfolder/subfolder.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/tagged-pagination-multiples/test.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/tagged-pagination-multiples/test.njk -------------------------------------------------------------------------------- /test/stubs/template-passthrough-duplicates/input/avatar.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough-duplicates/input/src/views/avatar.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/img.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/src/views/avatar.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/static/nested/test-nested.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/static/test.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough/static/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/img.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/src/views/avatar.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/static/nested/test-nested.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/static/test.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template-passthrough2/static/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/template.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stubs/templateFrontMatter.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateFrontMatter.liquid -------------------------------------------------------------------------------- /test/stubs/templateFrontMatterJs.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateFrontMatterJs.njk -------------------------------------------------------------------------------- /test/stubs/templateFrontMatterJson.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateFrontMatterJson.liquid -------------------------------------------------------------------------------- /test/stubs/templateLayoutCacheDuplicates-b/_includes/layout.njk: -------------------------------------------------------------------------------- 1 | Hello B -------------------------------------------------------------------------------- /test/stubs/templateLayoutCacheDuplicates/_includes/layout.njk: -------------------------------------------------------------------------------- 1 | Hello A -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/paged-cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/paged-cfg.md -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/paged-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/paged-tag.md -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/test1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/test1.md -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/test2.md: -------------------------------------------------------------------------------- 1 | --- 2 | tags: cat 3 | --- 4 | 5 | # Test 2 6 | -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/test3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/test3.md -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/test4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/test4.md -------------------------------------------------------------------------------- /test/stubs/templateMapCollection/test5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateMapCollection/test5.md -------------------------------------------------------------------------------- /test/stubs/templateTwoLayouts.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateTwoLayouts.liquid -------------------------------------------------------------------------------- /test/stubs/templateWithLayout.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateWithLayout.liquid -------------------------------------------------------------------------------- /test/stubs/templateWithLayoutContent.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateWithLayoutContent.liquid -------------------------------------------------------------------------------- /test/stubs/templateWithLayoutKey.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templateWithLayoutKey.liquid -------------------------------------------------------------------------------- /test/stubs/templatetest-frontmatter/single.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/templatetest-frontmatter/single.njk -------------------------------------------------------------------------------- /test/stubs/test-override-js-markdown.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/test-override-js-markdown.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/testing.html -------------------------------------------------------------------------------- /test/stubs/transform-pages/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/transform-pages/template.njk -------------------------------------------------------------------------------- /test/stubs/use-collection.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/use-collection.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/vue-layout.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/vue-layout.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/vue.11ty.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test/stubs/vue.11ty.cjs -------------------------------------------------------------------------------- /test/stubs/writeTest/test.md: -------------------------------------------------------------------------------- 1 | # Header -------------------------------------------------------------------------------- /test/stubs/writeTestJS-casesensitive/sample.Js: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestJS-casesensitive/test.11Ty.js: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestJS-passthrough/sample.js: -------------------------------------------------------------------------------- 1 | export default "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestJS-passthrough/test.11ty.js: -------------------------------------------------------------------------------- 1 | export default "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestJS/sample.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestJS/test.11ty.cjs: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestMarkdown/sample.md: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/stubs/writeTestMarkdown/sample2.markdown: -------------------------------------------------------------------------------- 1 | module.exports = "

Zach

"; 2 | -------------------------------------------------------------------------------- /test/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_node/3824-incremental/_includes/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824-incremental/_includes/head.tsx -------------------------------------------------------------------------------- /test_node/3824-incremental/_includes/view-props.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_node/3824-incremental/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824-incremental/eleventy.config.js -------------------------------------------------------------------------------- /test_node/3824-incremental/index.11ty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824-incremental/index.11ty.tsx -------------------------------------------------------------------------------- /test_node/3824-incremental/tsconfig-3824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824-incremental/tsconfig-3824.json -------------------------------------------------------------------------------- /test_node/3824/3824-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824/3824-test.js -------------------------------------------------------------------------------- /test_node/3824/_includes/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824/_includes/head.tsx -------------------------------------------------------------------------------- /test_node/3824/_includes/view-props.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_node/3824/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824/eleventy.config.js -------------------------------------------------------------------------------- /test_node/3824/index.11ty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824/index.11ty.tsx -------------------------------------------------------------------------------- /test_node/3824/tsconfig-3824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/3824/tsconfig-3824.json -------------------------------------------------------------------------------- /test_node/JsxTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/JsxTest.js -------------------------------------------------------------------------------- /test_node/MdxTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/MdxTest.js -------------------------------------------------------------------------------- /test_node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/README.md -------------------------------------------------------------------------------- /test_node/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/test_node/tests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/eleventy/HEAD/tsconfig.json --------------------------------------------------------------------------------