Fix list formatting

Olli 2019-04-13 19:32:23 +02:00
commit 45a64e734a

@ -41,7 +41,8 @@ The script creates triggers so either give the user SUPER [privileges](https://m
### General ### General
File source:configs/AppConfig.inc File: [configs/AppConfig.inc](https://github.com/coderkun/questlab/blob/master/configs/AppConfig.inc)
<pre> <pre>
public static $app = array( public static $app = array(
'name' => 'Questlab', 'name' => 'Questlab',
@ -56,26 +57,19 @@ File source:configs/AppConfig.inc
) )
); );
</pre> </pre>
* name * `name`: Displayable name of application
Displayable name of application * `genericname`: Generic name used internally (_do not change this!_)
* genericname * `namespace`: Namespace of this application (_do not change this!_)
Generic name used internally (_do not change this!_) * `timeZone`: Timezone of application
* namespace * `mailsender`: Sender used for FROM-header in email notifications
Namespace of this application (_do not change this!_) * `mailcontact`: Displayable email address for contact
* timeZone * `registration_host`: Limit user registration to this host
Timezone of application * `languages`: Supported languages (_do not change this!_)
* mailsender
Sender used for FROM-header in email notifications
* mailcontact
Displayable email address for contact
* registration_host
limit user registration to this host
* languages
supported languages (_do not change this!_)
### Database ### Database
File source:configs/AppConfig.inc File: [configs/AppConfig.inc](https://github.com/coderkun/questlab/blob/master/configs/AppConfig.inc)
<pre> <pre>
public static $database = array( public static $database = array(
'user' => 'questlab', 'user' => 'questlab',
@ -84,18 +78,15 @@ File source:configs/AppConfig.inc
'db' => 'questlab' 'db' => 'questlab'
); );
</pre> </pre>
* user * `user`: Name of database user
name of database user * `host`: Name of database host
* host * `password`: Password for database user
name of database host * `db`: Name of database to use
* password
password for database user
* db
name of database to use
### EMail notifications ### EMail notifications
File source:configs/AppConfig.inc File: [configs/AppConfig.inc](https://github.com/coderkun/questlab/blob/master/configs/AppConfig.inc)
<pre> <pre>
public static $app = array( public static $app = array(
[…] […]
@ -103,8 +94,8 @@ File source:configs/AppConfig.inc
[…] […]
); );
</pre> </pre>
* mailsender
Sender used for FROM-header in email notifications * `mailsender`: Sender used for FROM-header in email notifications
<pre> <pre>
public static $mail = array( public static $mail = array(
'host' => '', 'host' => '',
@ -115,15 +106,9 @@ Sender used for FROM-header in email notifications
'charset' => 'UTF-8' 'charset' => 'UTF-8'
); );
</pre> </pre>
* host * `host`: SMTP host to send mails via
SMTP host to send mails via * `port`: SMTP port to use
* port * `username`: Name of SMTP user
SMTP port to use * `password`: Password for SMTP user
* username * `secure`: Transport security to use (e.g. “ssl”)
name of SMTP user * `charset`: Charset to use for mails
* password
password for SMTP user
* secure
transport security to use (e.g. “ssl”)
* charset
charset to use for mails