0

I want to document a process that has some nested If-Else decision steps. The documentation must be printable, so I don't have a lot of space for proper left indentation to represent the current level and there is a lot of content that cannot be shrunk.

Also, I want to make it clear when an If block ends and you return to the parent scope, or jump the Else block.

Any ideas are welcome! Thanks.

1 Answer 1

1

You could do something like below where an illustration shows the indentation.

if-else-illustration

If you want to save space even more, you could fill that structure with ids (1, 1.1, 1.2,...) and reference them below in blocks. This way you wouldn't lose so much horizontal space for the indentation.

blocks with ids

1
  • Thanks for the ideas! I was thinking about adding GoTo and ReturnTo, for example: If it's raining Goto section 1.2.3 | if the rain stopped, ReturnTo 4.5.6 Commented Aug 3, 2020 at 10:33

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.