Page MenuHomePhorge

Test Plan Remarkup code blocks for GitHub Flavored Markdown - D25299
ActivePublic

Authored by valerio.bozzolan on Jun 16 2023, 09:26.
With lang=php
```lang=php
$something = "asd";
```
With option php:
```php
$something = "asd";
```
Without any option:
```
$something = "asd";
```
With the first content as "php" to be preserved and no options:
```
php
asd asd asd asd asd asd asd
```
Empty block:
```
```
Empty block inline:
``````
Counter example:
```counterexample
$asd = 1;
```
Counter example with lang PHP:
```counterexample,lang=php
$asd = 1;
```
Inline simple:
```asd```

Event Timeline

valerio.bozzolan changed the title of this paste from Test Plan Remarkup code blocks to Test Plan Remarkup code blocks for GitHub Flavored Markdown - D25299.Jun 16 2023, 09:57
valerio.bozzolan edited the content of this paste. (Show Details)
valerio.bozzolan changed the edit policy from "All Users" to "Trusted Contributors (Project)".