mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-05 01:07:48 +02:00
Consolidating the hooks to avoid duplication of logic We need this change for consolidating js and python content: we need include-markdown to run as a mkdocs plugin before our pipeline (rather than as markdown extension which runs after our hooks plugin).
31 lines
762 B
Markdown
31 lines
762 B
Markdown
---
|
|
hide_comments: true
|
|
title: LangGraph
|
|
---
|
|
|
|
<script>
|
|
// This script only runs in MkDocs, not on GitHub
|
|
var hideGitHubVersion = function() {
|
|
document.querySelectorAll('.github-only').forEach(el => el.style.display = 'none');
|
|
};
|
|
|
|
// Handle both initial load and subsequent navigation
|
|
document.addEventListener('DOMContentLoaded', hideGitHubVersion);
|
|
document$.subscribe(hideGitHubVersion);
|
|
</script>
|
|
|
|
<p class="mkdocs-only">
|
|
<img class="logo-light" src="static/wordmark_dark.svg" alt="LangGraph Logo" width="80%">
|
|
<img class="logo-dark" src="static/wordmark_light.svg" alt="LangGraph Logo" width="80%">
|
|
</p>
|
|
|
|
<style>
|
|
.md-content h1 {
|
|
display: none;
|
|
}
|
|
.md-header__topic {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
{% include-markdown "../../README.md" %} |