diff --git a/docs/recipes/README.md b/docs/recipes/README.md index 3960da545..756544b3d 100644 --- a/docs/recipes/README.md +++ b/docs/recipes/README.md @@ -116,6 +116,10 @@ Learn how to define a global proxy in Lucee. This guide demonstrates how to set This document explains how to declare variables, function calls with dot and bracket notation, and passing arguments via URL/form scopes as an array. +## [Import](/docs/recipes/import.md) + +Guide on using import to import components and custom tags in Lucee + ## [Inline Component](/docs/recipes/inline-components.md) Learn how to create and use inline components in Lucee. This guide demonstrates how to define components directly within your CFML code, making it easier to create and use components without needing a separate .cfc file. Examples include creating an inline component and using it similarly to closures. diff --git a/docs/recipes/index.json b/docs/recipes/index.json index 731c781a4..524c54360 100644 --- a/docs/recipes/index.json +++ b/docs/recipes/index.json @@ -416,6 +416,20 @@ "Array format" ] }, + { + "file": "import.md", + "title": "Import", + "path": "/docs/recipes/import.md", + "hash": "d0a4f5427a500c100381695fcf029ff4", + "keywords": [ + "cfimport", + "import", + "Lucee", + "components", + "custom tags", + "taglib" + ] + }, { "file": "inline-components.md", "title": "Inline Component",