Skip to content

Commit ab746a4

Browse files
committed
documentation update
1 parent a48a0ca commit ab746a4

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,19 @@ Perl Executing Browser (PEB) is an HTML GUI for [Perl 5](https://www.perl.org/)
2626

2727
## Quick Start
2828
These are the basic steps for building your first PEB-based application:
29-
**1.** Write your local HTML file(s) that will serve as a GUI for your application.
30-
Use your favorite WYSIWIG editor or code by hand including your favorite libraries or frameworks. PEB supports both HTML 4 & 5, although not all HTML 5 features are supported.
31-
**1.1.** If your users will have to enter data manually, don't forget to make an appropriate HTML form for them.
32-
**1.2.** If your users will have to open files or folders, see section [Special URLs for Users](#special-urls-for-users) for information on how to open local files and folders from PEB. You may also see the ```filesystem.html``` file in the demo package shipped with PEB.
33-
**1.3.** Connect your local HTML file(s) to your Perl 5 scripts.
34-
This is best explained in section [Calling Local Perl Scripts](#calling-local-perl-scripts).
29+
30+
* **1.** Write your local HTML file(s) that will serve as a GUI for your application.
31+
Use your favorite WYSIWIG editor or code by hand including your favorite libraries or frameworks. PEB supports both HTML 4 & 5, although not all HTML 5 features are supported.
32+
33+
* **1.1.** If your users will have to enter data manually, don't forget to make an appropriate HTML form for them.
34+
35+
* **1.2.** If your users will have to open files or folders, see section [Special URLs for Users](#special-urls-for-users) for information on how to open local files and folders from PEB. You may also see the ```filesystem.html``` file in the demo package shipped with PEB.
36+
37+
* **1.3.** Connect your local HTML file(s) to your Perl 5 scripts.
38+
This is best explained in section [Calling Local Perl Scripts](#calling-local-perl-scripts).
39+
3540
**3.** Write your Perl scripts.
36-
The only limitation imposes by PEB on local Perl scripts is the banning of the ```fork``` core function. Input from local HTML files is read just like reading POST or GET requests in a Perl CGI script. You may see the ```get-post-test.pl``` file in the demo package.
41+
The only limitation impose by PEB on local Perl scripts is the banning of the ```fork``` core function. Input from local HTML files is readd just like reading POST or GET requests in a Perl CGI script. You may see the ```get-post-test.pl``` file in the demo package.
3742

3843
Note that all files and directories used by PEB are relational to the directory where the PEB binary is located, because PEB is created to work from any folder without installation. All your local HTML files and Perl scripts must be located inside the ```{PEB_binary_directory}/resources/app``` directory - see section [Settings](#settings).
3944

0 commit comments

Comments
 (0)