Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.36 KB

File metadata and controls

37 lines (23 loc) · 1.36 KB

This page has been moved. EUID documentation is now on the EUID website: see European Unified ID Overview.

EUID Documentation

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.

Adding custom tags

  1. Add imports to top of markdown file body
import CustomTagsFilters from "@site/src/components/CustomTags/CustomTagsFilters";
import CustomTagsContainer from "@site/src/components/CustomTags/CustomTagsContainer";
  1. Render CustomTagsFilters in desired location - probably at top of page below heading.
<CustomTagsFilters />
  1. 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>
  1. 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.