Backtick

To display inline code within a text, put it inside a backtick. Example: To check if an Exchange is closed, you need to use `ExchangeCalendar` Example: To check if an Exchange is closed, you need to use ExchangeCalendar

From File

To display inline code from a file, use the file inlined code plugin. Example: To access this feature, navigate to `:file: urlsample.txt`. Example: To access this feature, navigate to .

Validated Identifier

Use identifier inlined code plugin to render inlined code and validate its spelling by looking at the provided file for match. Use it to make sure your documentation reflects the API changes and do not use outdated identifier names `:identifier: my_func {validationPath: "my_func_usage.py"}` def example(): my_func(100) Specify multiple files via plugins/default-parameters#page-local-defaults page local or plugins/default-parameters#global-defaults global plugin defaults to avoid repeating validationPath throughout the page. --- identifier: {validationPath: ["python/my_func_usage.py", "python/utils.py"]} --- markdown my text `:identifier: my_func`