-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best practices for #hashtags #63
Comments
Is this issue about annotations ? |
The issue is about using inline hashtags in text fields such as comment, summary, etc and whether activity streams implementations ought to be required to rely on those. The decision of the WG was that no, publishers should make use of appropriate structured property fields to communicate tagging information. AS2 has the "tag" property. So rather than just saying... { "@type": "Note", "content": "A test #note" } We'd have something like: { "@type": "Note", "content": "A test #note",
"tag": { "@type": "Link", "href": "http://example.org/tags/note" } } This makes tagging explicit without requiring processing of the text content. |
The "#note" in "A test #note" has no AS2 semantics different from "note" in "A test note", correct? Or does "#" have an additional semantic in AS2 ? EDIT: I just noticed that this is in the "non-normative" section of the document: That is something which could be improved (I hope). |
Right, there are no additional semantics in AS2 for the #. |
Addressed in the current published working draft |
Many social systems use a in-band mechanism to let users define a category or topic for an object. For example, "#topic" will mark an image or text as being related to the topic "topic".
It would be worthwhile to note that Activity Streams 2.0 processors should not have to parse the "content" or other properties of activity objects to determine this category information.
Instead, the stream creator SHOULD add a "tag" property to the object and MAY change the "#topic" content to a link to a page about that topic (for example, one showing a stream of all objects related to that topic).
The text was updated successfully, but these errors were encountered: