Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a examples to functions for lucee docs #1411

Merged
merged 2 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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