We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aee3197 + a7570fc commit e432eb3Copy full SHA for e432eb3
README.md
@@ -87,26 +87,3 @@ class Highlighter extends Component
87
88
export default Highlighter;
89
```
90
-
91
-## Example in Markdown-Generated Presentation
92
-#### (using [marp](https://marp.app/))
93
94
-Craft the IEC 61131 code that is desired and wrap it in a code-block defined with the tripple-backtick (`` ``` ``) and language as `iecst`.
95
96
-````markdown
97
-```iecst
98
-VAR
99
- test : BOOL := TRUE ;
100
- x : REAL := 5.23;
101
- lx : LREAL;
102
- myString : STRING(255) := 'this is a test string';
103
-END_VAR
104
-IF test THEN
105
- lx := REAL_TO_LREAL( COS(x) );
106
-END_IF
107
-```
108
-````
109
110
-This will thus render as:
111
112
-
0 commit comments