Skip to content

Commit 53ab222

Browse files
committed
improve helper function content
1 parent 475b817 commit 53ab222

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

utilities/helper-functions/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ description: Tutorial on how to use helper functions provided by Fano Framework
1111

1212
Photo by [Austin Kehmeier](https://unsplash.com/@a_kehmeier?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/helping-hand?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
1313

14-
Fano Framework provides helper functions to simplify common tasks such as generate slug string, join string with delimiter or read file content.
14+
Fano Framework provides helper functions to simplify common tasks such as [generate slug string](#generate-slug-string), [join string with delimiter](#join-string) or [read file content](#read-file-content).
1515

1616
All helpers functions are declared in `fano.pas` unit.
1717

18-
## Read file content to string
18+
## <a name="generate-slug-string"></a>Read file content to string
1919

20-
`readFile()` reads file content and output is as string. It accepts one parameter file path of filename to load.
20+
`readFile()` reads file content and output it as string. It accepts one parameter file path of filename to load.
2121

2222
```
2323
(*!------------------------------------------------
@@ -38,7 +38,7 @@ var fileContent : string;
3838
fileContent := readFile('/tmp/myfile');
3939
```
4040

41-
## Join array of string as string
41+
## <a name="join-string"></a>Join array of string as string
4242

4343
`join()` function concatenates array of string as a single string with delimiter.
4444

@@ -61,7 +61,7 @@ var joinedStr : string;
6161
joinedStr := join('#', ['hello', 'good', 'people']);
6262
```
6363

64-
## Generate slug
64+
## <a name="generate-slug-string"></a>Generate slug
6565

6666
`slug()` function generates string consists of alpha numeric characters separated by dash characters and strips everything else.
6767

0 commit comments

Comments
 (0)