Version 0.6.6
Using the README example:
iex(3)> result = doc |> xpath(~x"//matchup/name/text()")
'Match One'
iex(4)> result = doc |> xpath(~x"//matchup/name/text()"s)
"Match OneMatch TwoMatch Three"
For the s modifier, I would expect the result: "Match One"