A lot of the new documentation commands for XCode has been discussed here, but even with the commands explained there, I can't seem to find a way to make a command span multiple words.
Let me give an example:
Input:
Hi, I am for @a cosmetic purposes only.
Output: Hi, I am for cosmetic purposes only.
Nothing wrong there, but imagine me wanting to make the word purposes italic as well. There the problem starts. I tried:
Input:
Hi, I am for @a cosmetic @a purposes only.
Output: Hi, I am for cosmeticpurposes only.
--
Input:
Hi, I am for @a cosmetic <any amount of spaces> @a purposes only.
Output: Hi, I am for cosmeticpurposes only.
--
Input:
Hi, I am for @a cosmetic @a @a purposes only.
Output: Hi, I am for cosmeticpurposes only.
--
Input:
Hi, I am for @a cosmetic @a @a @a purposes only.
Output: Hi, I am for cosmeticpurposes only.
--
Input:
Hi, I am for @a cosmetic <line break>
@a purposes only.
Output: Hi, I am for cosmeticpurposes only.
--
As you can see, I can't seem to find a way to do it. Somehow all whitespaces seem to get trimmed. Does anyone knows a solution to this one?