Skip to content

Categories

Categories help organize and classify wiki pages.

Basic Category Usage

Add a page to a category:

sevenmark
{{{#category Programming }}}

For Namumark migration compatibility, [[분류:...]] maps to the same category AST:

sevenmark
[[분류:Programming]]
[[분류:Spoiler#blur]]

The #blur suffix is accepted and stripped from the stored category title because SevenMark does not add a Namumark-specific category AST. To link to a visible category page instead of adding the page to the category, use a leading colon:

sevenmark
[[:분류:Programming|Programming category]]

Multiple Categories

A page can belong to multiple categories:

sevenmark
{{{#category Technology }}}
{{{#category Programming }}}
{{{#category Documentation }}}
{{{#category Tutorials }}}

Category Names

Category names can contain spaces and special characters:

sevenmark
{{{#category Programming Languages }}}
{{{#category Web Development }}}
{{{#category C++ Programming }}}

Categories in Context

Categories are typically placed at the end of a page:

sevenmark
# My Programming Tutorial

This is a tutorial about programming...

## Code Examples

``` #lang="javascript"
console.log("Hello, World!");
```

## Conclusion

That concludes our tutorial.

{{{#category Programming }}}
{{{#category JavaScript }}}
{{{#category Tutorials }}}
{{{#category Web Development }}}

Category Organization

Categories help create a hierarchical structure:

sevenmark
// For a Python tutorial page
{{{#category Programming Languages }}}
{{{#category Python }}}
{{{#category Tutorials }}}

// For a web framework article
{{{#category Web Development }}}
{{{#category Frameworks }}}
{{{#category Python }}}
{{{#category Django }}}

Important Notes

  • Categories do not support parameters
  • The entire content inside {{{#category}}} is treated as the category name
  • Categories are typically placed at the end of a document
  • Category elements are collected during preprocessing for indexing and organization

Usage in Wiki Systems

Categories are used to:

  • Organize related pages together
  • Create hierarchical navigation structures
  • Enable filtering and search by category
  • Generate category index pages automatically