mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 15:19:55 +03:00
[How to create a new Format] Add new page
parent
2e54dca1bd
commit
098dcdcf7a
1 changed files with 24 additions and 0 deletions
24
How-to-create-a-new-Format.md
Normal file
24
How-to-create-a-new-Format.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
Create a new file in the `formats/` folder (see [Folder structure](Folder-structure)).
|
||||
|
||||
The file must be named according to following specification:
|
||||
|
||||
* It starts with the type
|
||||
* The file name must end with 'Format'
|
||||
* The file type must be PHP, written in small letters (seriously!) ".php"
|
||||
|
||||
**Examples:**
|
||||
|
||||
Type | Filename
|
||||
-----|---------
|
||||
Atom | AtomFormat.php
|
||||
Html | HtmlFormat.php
|
||||
|
||||
The file must start with the PHP tags and end with an empty line. The closing tag `?>` is [omitted](http://php.net/basic-syntax.instruction-separation).
|
||||
|
||||
Example:
|
||||
|
||||
```PHP
|
||||
<?PHP
|
||||
// PHP code here
|
||||
// This line is empty (just imagine it!)
|
||||
```
|
Loading…
Add table
Reference in a new issue