mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-02 09:04:44 +02:00
fixed messed up markdown formatting
parent
45a8d71f8f
commit
c0e559aed4
1 changed files with 16 additions and 15 deletions
|
@ -5,12 +5,12 @@ _**WORK IN PROGRESS: nothing described here should be considered as definitive o
|
||||||
|
|
||||||
Use two space characters for each indentation level
|
Use two space characters for each indentation level
|
||||||
```PHP
|
```PHP
|
||||||
if ( true ){
|
if ( true ){
|
||||||
__echo true;
|
echo true;
|
||||||
else{
|
} else{
|
||||||
__echo false;
|
echo false;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
* Proposal 2
|
* Proposal 2
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ __echo false;
|
||||||
```PHP
|
```PHP
|
||||||
if(true){
|
if(true){
|
||||||
echo true;
|
echo true;
|
||||||
} else {
|
} else{
|
||||||
echo false;
|
echo false;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -44,12 +44,12 @@ __echo false;
|
||||||
* Proposal 1
|
* Proposal 1
|
||||||
|
|
||||||
```PHP
|
```PHP
|
||||||
var $thisVariable;
|
var $thisVariable;
|
||||||
function thisFunction(){}
|
function thisFunction(){}
|
||||||
class thisClass {
|
class thisClass {
|
||||||
function thisMethod(){}
|
function thisMethod(){}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
* Proposal 2
|
* Proposal 2
|
||||||
|
|
||||||
|
@ -59,3 +59,4 @@ class thisClass {
|
||||||
class ThisClass { // UpperCamelCase (PascalCase)
|
class ThisClass { // UpperCamelCase (PascalCase)
|
||||||
function ThisMethod(){} // UpperCamelCase (PascalCase)
|
function ThisMethod(){} // UpperCamelCase (PascalCase)
|
||||||
}
|
}
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue