Skip to content

Commit

Permalink
Merge pull request #1411 from MitrahSoft/Added_a_examples_27-10-23
Browse files Browse the repository at this point in the history
Added a examples to functions for lucee docs
  • Loading branch information
zspitzer authored Nov 17, 2023
2 parents 75582e8 + 1875c6d commit 842eb7b
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A string or a variable that contains one
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A string containing XSL text
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
```luceescript+trycf
string = "Susi Sorglos";
writeDump(string.findLastNoCase("s"));
writeDump(string.findLastNoCase("s",1));
writeDump(string.findLastNoCase("S",4));
```
18 changes: 18 additions & 0 deletions docs/03.reference/05.objects/string/markdowntohtml/_examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
```luceescript+trycf
nl= chr(10);
dNL= nl & nl;
markdownString="" &
"## Heading1" & dNL &
"###### Simple Paragraph" & dNL &
"Some simple paragraph with a simple text" & dNL &
"###### Ordered List" & dNL &
"- First item" & nl &
"- Second item" & nl &
"- Third item" & dNL &
"###### Some Blockquotes" & dNL &
"> This is some blockquoted text" & nl &
">> Blockquoted text with indentation" & dNL;
echo( markdownString.markdownToHtml() );
```
2 changes: 1 addition & 1 deletion docs/05.categories/293.s3/category.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ menuTitle: S3

Lucee S3 Extension Source Code <https://github.com/lucee/extension-s3>

The s3* functions listed below are optimised for use with S3, while you can use the file* functions, these S3 specfic functions will perform better and may expose additional S3 specific functionality.
The s3* functions listed below are optimised for use with S3, while you can use the file* functions, these S3 specific functions will perform better and may expose additional S3 specific functionality.

Open Issues: [https://luceeserver.atlassian.net](https://luceeserver.atlassian.net/issues/?jql=labels%20%3D%20%22s3%22)

Expand Down

0 comments on commit 842eb7b

Please sign in to comment.