Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Parameter
    summaryIndicates if the stage must also break nested quotes (i.e. single quoted text) from the quoted text found.
    defaulttrue
    nameSingleQuotes
    typeboolean
    • Nested quotes are indicated by a single quotion ('). A single quotion outside of double quotion marks is not a quote, and not processed like a quote.
saga_config_stage
Code Block
languagejs
"singleQuotes": true

Example Output


saga_graph
Code Block
languagetext
V----[Lamarr said, "The case is far from over, and we will win."]----V  
^--[Lamarr said,]--V--[The case is far from over, and we will win.]--^  

V----[He said, "I don't care."]----V  
^--[He said,]--V--[I don't care.]--^

With nested quotes
V----------[Dan said: "In a town outside Brisbane, I saw 'Tourists go home' written on a wall. But then someone told me, 'Pay it no mind, lad.' "]-----------V  
^--[Dan said:]--V---------[In a town outside Brisbane, I saw 'Tourists go home' written on a wall. But then someone told me, 'Pay it no mind, lad.']---------^  
                ^--[In a town outside Brisbane, I saw]--V--[Tourists go home]--V--[written on a wall. But then someone told me,]--V--[Pay it no mind, lad.]--^  

...