mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-21 23:22:27 +02:00
* feat: add copy page button functionality and fix llms-text output - Add copy page button with CSS and JS implementation - Implement copy page hooks for MkDocs integration - Fix HTML filtering and DOM text reinterpreted as HTML issues - Update llms-text target to generate docs/llm.txt instead of docs/llms-full.txt - Add necessary styling and package.json dependencies * fix missing button in preview * remove the over-processing * disable API reference
16 lines
408 B
CSS
16 lines
408 B
CSS
/* Minimal CSS for copy page button */
|
|
.copy-page-btn {
|
|
background: transparent;
|
|
border: 1px solid var(--md-default-fg-color--lightest);
|
|
padding: 6px 12px;
|
|
margin-right: 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
color: var(--md-default-fg-color);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.copy-page-btn:hover {
|
|
background: var(--md-default-fg-color--lightest);
|
|
} |