It handles it by replacing <#sometext#> with the blue bubble placeholder, as you quite discovered, but this does not affect the case when you type it yourself directly in the Xcode editor (because it does not have any sense to type this in the code directly, you would generally instead type the real content there).
If you type some code that contains <#sometext#> in TextEdit, then you copy/paste it back in the Xcode editor, Xcode will insert the blue bubbles as placeholders where you have typed <#...#> in your text.
One usage of this is to generate Code Snippets. Simply select some piece of code in your Xcode Editor, then drag & drop it in the Code Snippet Library; you will then be able to drag & drop it back in your Code Editor later to reuse this same piece of code. If this Code Snippet contains some <#placeholder#> Xcode will then insert blue bubbles at this position.
For more information, see this page in the documentation that contains a nice video that explains it in details.