Share via

Page "Introduction to managed metadata" looks to have some misinformation about disallowed characters

Marcin Laski 0 Reputation points
2026-04-20T14:30:04.1333333+00:00

page https://learn.microsoft.com/en-us/sharepoint/managed-metadata at the bottom has:

These characters are not allowed in Taxonomy property names: [ ] ; ", < > | & \ t.

but that suggest that letter "t" is a disallowed character. If that is true please be more explicit about it as it is extremally unusual to have disallowed letter from the English alphabet.

Microsoft 365 and Office | SharePoint | Development
0 comments No comments

1 answer

Sort by: Most helpful
  1. Michelle-N 15,545 Reputation points Microsoft External Staff Moderator
    2026-04-20T15:00:13.8833333+00:00

    Hi @Marcin Laski

    Based on the information you provided, I understand that you've noticed a list of disallowed characters in the SharePoint Managed Metadata documentation where the letter "t" appears to be forbidden, and you're looking for clarification on whether this is an error.

    The confusion stems from a technical formatting issue on the Microsoft Learn page. In programming and technical documentation, \t is the standard escape sequence used to represent a Tab character.

    Due to how the site renders Markdown or HTML, the backslash (\) and the t were likely treated as two separate items in a list or stripped of their connection. Instead of showing "Tab," the UI rendered them as two distinct characters: \ and t.

    Based on the older SharePoint CSOM (Client-Side Object Model) documentation or technical specifications for Term labels, they consistently list special characters and "Control Characters" (like tabs or newlines) as restricted but never the letter "t."

    To be more explicit, the characters actually being restricted are:

    • Structural characters: [ ] ; " , < > | &
    • The Backslash: \
    • The Tab Character: (represented incorrectly as a standalone t)

    In summary, it is a UI rendering and formatting issue on the documentation page. The system is trying to tell you that you cannot use tabs in property names, but it accidentally "broke" the \t token into two pieces.

    Thank you for your understanding.


    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.