Zend certified PHP/Magento developer

Can I create a flow chart from plain text?

I’m trying to write out some nested conditional logic for discussion purposes. I think ideally it would be a flow chart, but text is easier for me to edit.

Is there a tool where I can write out text and convert it to a flow chart, similar to how GraphViz works? For input I’m imagining something like:

Question 1
  - Yes
    - Question 2
      - Yes
        - Do A
      - No
        - Do B
  - No
    - Question 3
      - Yes
        - Do C
      - No
        - Question 4
          - Yes
            - Do D
          - No
            - Do E