Skip to content

Commit e432eb3

Browse files
authored
Merge pull request #18 from yhatt/patch-1
Please remove the confusable instruction about Marp
2 parents aee3197 + a7570fc commit e432eb3

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

README.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -87,26 +87,3 @@ class Highlighter extends Component
8787

8888
export default Highlighter;
8989
```
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-
![IEC 61131-3 Example](./61131example.png)

0 commit comments

Comments
 (0)