This page has been moved. EUID documentation is now on the EUID website: see European Unified ID Overview.
Note: The new location for viewing EUID documentation content is on the EUID website: European Unified ID Overview. This repository contains all the content files and supporting site infrastructure for the EUID website.
For information about build tools and about contributing to this repository, see CONTRIBUTING.md.
- Add imports to top of markdown file body
import CustomTagsFilters from "@site/src/components/CustomTags/CustomTagsFilters";
import CustomTagsContainer from "@site/src/components/CustomTags/CustomTagsContainer";- Render
CustomTagsFiltersin desired location - probably at top of page below heading.
<CustomTagsFilters />- Wrap tagged section with CustomTagsContainer and add desired tags, comma-separated
<CustomTagsContainer tags="tag one, tag two">
### My Tagged Section
The body of my tagged section. <a href="">An example link.</a>
</CustomTagsContainer>- All added tags should now appear as clickable tag buttons at the top of the page. Clicking a tag will filter only results that match that tag. Clicking the tag again should toggle all content to be visible.