> For the complete documentation index, see [llms.txt](https://docs.legitimate.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.legitimate.net/user-guide/legitimate-tags/additional-tags.md).

# Additional Tags

### Title Tag ( lg:title )

The title tag should be no more than 100 characters in length. Any longer than that and it will be truncated.

```markup
<meta property="lg:title" content="The Rise of Commercial Fake News"/>
```

### Description Tag ( lg:description )

The title tag should be no more than 160 characters in length. Any longer than that and it will be truncated.

```markup
<meta property="lg:description" content="What happens when news stories are false on purpose? How does this play into the typical definition of fake news?"/>
```

### Tags ( lg:tags)

These are the tags that appear in Legitimate at the bottom of an article. We use them for filing and organising articles. Users can also follow tags and see all the articles that have been tagged with that specific tag. \
Each article can contain no more than 5 tags. Any extra ones will simply be ignored. \
Your tags should be separated by commas.

```markup
<meta property="lg:tags" content="Fake News, Misinformation, Fake Identity, Election Interference, Disinformation"/>
```

### URL Tag ( lg:url )

This is simply the url that we will store in the system for linking to your article. If you would like to add parameters to this tag for tracking purposes that is fine.&#x20;

```markup
 <meta property="lg:url" content="https://blog.legitimate.io/2020/06/01/the-rise-of-commercial-fake-news/"/>
```

### Image Tag ( lg:image )

The image tag is used to hold the image that we show for your article in Legitimate's results. If you do not supply an image we will look for the OpenGraph (OG:IMAGE) within your document and if it does not appear we will show a placeholder.  \
You should try and create all your images in a 16:9 or 4:3 aspect ratio. Anything wider or taller and we will adjust it to fit. This could cause areas to be cut out. <br>

```markup
<meta property="lg:image" content="http://blog.legitimate.io/wp-content/uploads/2020/04/what-is-fake-news-370x305-1.jpg"/>
```

### Index ( lg:index )

If an organisation or company wishes to exclude its content from our search results they can do so using the "lg:index" tag with the "exclude" value. This will stop the content from showing up in search results if a person searches or browses the content section on Legitimate. Articles will still be added to a content creators profile page.&#x20;

```markup
<meta property="lg:index" content="exclude" />
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.legitimate.net/user-guide/legitimate-tags/additional-tags.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
