docs: fix mdx fences (#25184)

This commit is contained in:
Erick Friis 2024-08-08 10:07:24 -07:00 committed by GitHub
parent 27170b08da
commit be7a5aa726
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 8 deletions

View File

@ -5,11 +5,9 @@ sidebar_class_name: hidden
# Providers
```{=mdx}
<head>
<link rel="canonical" href="https://python.langchain.com/v0.2/docs/integrations/platforms/" />
</head>
```
:::info

View File

@ -4,11 +4,9 @@ keywords: [PyPDFDirectoryLoader, PyMuPDFLoader]
# PDF
```{=mdx}
<head>
<link rel="canonical" href="https://python.langchain.com/v0.2/docs/how_to/document_loader_pdf/" />
</head>
```
>[Portable Document Format (PDF)](https://en.wikipedia.org/wiki/PDF), standardized as ISO 32000, is a file format developed by Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, hardware, and operating systems.

View File

@ -4,11 +4,9 @@ sidebar_class_name: hidden
---
# Text Splitters
```{=mdx}
<head>
<link rel="canonical" href="https://python.langchain.com/v0.2/docs/concepts/" />
</head>
```
Once you've loaded documents, you'll often want to transform them to better suit your application. The simplest example
is you may want to split a long document into smaller chunks that can fit into your model's context window. LangChain

View File

@ -4,11 +4,9 @@ sidebar_class_name: hidden
---
# Vector stores
```{=mdx}
<head>
<link rel="canonical" href="https://python.langchain.com/v0.2/docs/concepts/" />
</head>
```
:::info
Head to [Integrations](/docs/integrations/vectorstores/) for documentation on built-in integrations with 3rd-party vector stores.