# /noparse

## Syntax

**/noparse** ***command***

## Description

Prevents any MQ2Data from being parsed when used in *command*.

## Example

* Here the literal string "${stuff}" is added to the ini file, as opposed to the current value of ${stuff}.

```
/noparse /ini stuff.ini MySection MyVal ${stuff}
```

\*Here is another example. First we declare a variable

```
/declare NotDisplayed string outer DISPLAYED
```

* Using echo by itself, the MQ2Data is parsed and displayed in the chatwnd:

```
/echo ${NotDisplayed}
[MQ2] DISPLAYED
```

* Using /noparse, we do not parse the MQ2Data, and the literal string is displayed in the chatwnd

```
/noparse /echo ${NotDisplayed}
[MQ2] ${NotDisplayed}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://macroquest.gitbook.io/macroquest/commands/slash-commands/noparse.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
