:heavy_check_mark: Multiple document (examples/test_for_documents/display_settings/multi_docs.md)

Multiple document

title: Multiple document
keep_single: true
documentation_of:
- visible.hello
- no-index.hello
- hidden.hello

Multiple files can be specified for documentation_of. If keep_single is true, documentation of those files will be generated. If keep_single is not specified or is false, a redirect will be generated.

See this page for an example of the true case; see encodings for an example of the false case.

display=visible (examples/test_for_documents/display_settings/visible.hello)

display: visible

default.

Code

# competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A
Hello World

Test cases

Env Name Status Elapsed Memory
hello judge_data :heavy_check_mark: AC 6 ms 2 MB

display=no-index (examples/test_for_documents/display_settings/no-index.hello)

display: no-index

The documentation will not appear in the index, but will be created and appear in dependencies.

Code

# competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A
Hello World

Test cases

Env Name Status Elapsed Memory
hello judge_data :heavy_check_mark: AC 6 ms 2 MB

display=hidden (examples/test_for_documents/display_settings/hidden.hello)

display: hidden

The documentation will not appear in the index or dependencies, but will be created.

Code

# competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A
Hello World

Test cases

Env Name Status Elapsed Memory
hello judge_data :heavy_check_mark: AC 6 ms 2 MB
Back to top page