Skip to content

Nested if else #276

@ghost

Description

I learned how to use source code markup! It's pretty useable. Previously I had tried to paste code with inline syntax.
So this nested conditions

if 1
  if 2
    3
  elseif 4
    5
else 6

Become to this:

if 1 then
  if 2 then
    return 3
  elseif 4 then
    return 5
  else
    return 6
  end
end

It is confusing, fix please

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions