From b2a52df6c18d008b74a08e25e538e20fccfc4a09 Mon Sep 17 00:00:00 2001 From: CF Mitrah Date: Thu, 28 Mar 2024 16:08:38 +0530 Subject: [PATCH] Added examples and description for lucee docs --- .../01.functions/encodeforxpath/_examples.md | 5 ++++- .../querycolumnarray/_arguments/query.md | 1 + docs/03.reference/02.tags/form/_examples.md | 20 ++++++++++++++++++- docs/03.reference/02.tags/select/_examples.md | 20 ++++++++++++++++++- .../string/encodeforxpath/_examples.md | 4 ++++ 5 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 docs/03.reference/05.objects/string/encodeforxpath/_examples.md diff --git a/docs/03.reference/01.functions/encodeforxpath/_examples.md b/docs/03.reference/01.functions/encodeforxpath/_examples.md index 8bd5a1748..fc78f0329 100644 --- a/docs/03.reference/01.functions/encodeforxpath/_examples.md +++ b/docs/03.reference/01.functions/encodeforxpath/_examples.md @@ -1 +1,4 @@ -*There are currently no examples for this function.* +```luceescript+trycf + enc = EncodeForXPath( "", true ); + writeDump( enc ); +``` \ No newline at end of file diff --git a/docs/03.reference/01.functions/querycolumnarray/_arguments/query.md b/docs/03.reference/01.functions/querycolumnarray/_arguments/query.md index e69de29bb..7752c1f50 100644 --- a/docs/03.reference/01.functions/querycolumnarray/_arguments/query.md +++ b/docs/03.reference/01.functions/querycolumnarray/_arguments/query.md @@ -0,0 +1 @@ +This is the query object from which you want to extract the column data. It should be a valid query object. diff --git a/docs/03.reference/02.tags/form/_examples.md b/docs/03.reference/02.tags/form/_examples.md index 48da06280..e61ac1ae7 100644 --- a/docs/03.reference/02.tags/form/_examples.md +++ b/docs/03.reference/02.tags/form/_examples.md @@ -1 +1,19 @@ -*There are currently no examples for this tag.* +```lucee+trycf + + -- year -- +
+ + + + + +
+ -- color -- +
+ + + + + +
+``` \ No newline at end of file diff --git a/docs/03.reference/02.tags/select/_examples.md b/docs/03.reference/02.tags/select/_examples.md index 48da06280..e61ac1ae7 100644 --- a/docs/03.reference/02.tags/select/_examples.md +++ b/docs/03.reference/02.tags/select/_examples.md @@ -1 +1,19 @@ -*There are currently no examples for this tag.* +```lucee+trycf + + -- year -- +
+ + + + + +
+ -- color -- +
+ + + + + +
+``` \ No newline at end of file diff --git a/docs/03.reference/05.objects/string/encodeforxpath/_examples.md b/docs/03.reference/05.objects/string/encodeforxpath/_examples.md new file mode 100644 index 000000000..e730b722c --- /dev/null +++ b/docs/03.reference/05.objects/string/encodeforxpath/_examples.md @@ -0,0 +1,4 @@ +```luceescript+trycf + enc=''.EncodeForXPath(); + writeDump( enc ); +``` \ No newline at end of file