Skip to content

Searching

Milthm searches charts from the song-list search box and from the q query parameter of song-list deep links.

An empty or whitespace-only query returns all charts.

Text terms are searched against song and chart metadata. Milthm indexes:

  • original and Latin song titles;
  • composer / artist fields;
  • artist lists;
  • illustrator / illustration fields;
  • charter lists;
  • tags.

Search results are sorted by relevance.

Tokens

Unquoted text is split by whitespace. The search syntax recognizes <, <=, <>, =, ==, >, and >= as operators.

Double-quoted text is kept as one query term, so it can contain spaces:

text
"rain shower"

Quoted text is not an exact-match operator. It is searched like ordinary text.

Inside quoted text, Milthm supports these escapes:

EscapeMeaning
\"double quote
\\backslash
\nnewline
\rcarriage return
\ttab

Filters

Filters use this shape:

text
field operator value

You can combine text terms and filters in one query.

Supported Fields

Field aliasesValue typeDescription
star, stars, difficultynumberFilter by normalized chart difficulty value.
songid, song_id, song-idstringFilter by song ID.
chartid, chart_id, chart-idstringFilter by chart ID.

Field names are matched case-insensitively. Unsupported fields are ignored.

Operators

For numeric difficulty filters:

OperatorMeaning
<less than
<=less than or equal
=equal
==equal
<>not equal
>=greater than or equal
>greater than

For songid and chartid string filters, use:

OperatorMeaning
=equal
==equal
<>not equal

Use <> for not-equal filters. != is not supported.

Examples

text
difficulty >= 10

Find charts with normalized difficulty greater than or equal to 10.

text
songid = 3d466b94-8503-4b93-b39c-cd149c4fb760

Find charts belonging to the specified song ID.

text
chartid <> 0896f11f-7a6d-4a99-8b47-b39388c35ee1

Exclude a chart ID.

text
"rain shower" difficulty >= 10

Search for the phrase as one text term, then keep only charts with difficulty at least 10.