mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-10 12:32:13 +00:00
Odd parse error when the relational operators are in a lua formatted code block.
This commit is contained in:
@@ -33,9 +33,9 @@ myvar = 32 -- this is a GLOBAL variable
|
||||
|
||||
Lua supports the following relational operators:
|
||||
|
||||
```lua
|
||||
==\: equality
|
||||
~=\: inequality
|
||||
```txt
|
||||
==: equality
|
||||
~=: inequality
|
||||
<: less than
|
||||
>: greater than
|
||||
<=: less or equal
|
||||
@@ -44,7 +44,9 @@ Lua supports the following relational operators:
|
||||
|
||||
You can concat strings with two dots surrounded by spaces.
|
||||
|
||||
`print("This" .. " is " .. "true.")`
|
||||
```lua
|
||||
print("This" .. " is " .. "true.")
|
||||
```
|
||||
|
||||
Functions, conditionals and loops alwyas end with "end"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user