This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a commit to branch afd
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/afd by this push:
new 1cedbe2a9a Fixed overflows in docs markdown publishing
1cedbe2a9a is described below
commit 1cedbe2a9a129c58e259231618bfd62b8d3424f5
Author: Stephen Mallette <[email protected]>
AuthorDate: Mon Jul 27 11:10:39 2026 -0400
Fixed overflows in docs markdown publishing
---
docs/src/recipes/index.asciidoc | 2 +-
docs/src/reference/the-traversal.asciidoc | 7 ++++++-
docs/src/tutorials/the-gremlin-console/index.asciidoc | 2 +-
3 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/docs/src/recipes/index.asciidoc b/docs/src/recipes/index.asciidoc
index 7a8b400deb..f8913e66a5 100644
--- a/docs/src/recipes/index.asciidoc
+++ b/docs/src/recipes/index.asciidoc
@@ -25,7 +25,7 @@
image::apache-tinkerpop-logo.png[width=500,link="https://tinkerpop.apache.org"]
*x.y.z*
-[llms-summary="A collection of practical Gremlin traversal patterns and
solutions to common graph problems, with runnable examples."]
+[llms-summary="A collection of practical Gremlin traversal patterns and
solutions to common graph problems, with runnable
examples.",allow-oversize="true"]
= Recipes
image:gremlin-chef.png[width=120,float=left] All programming languages tend to
have
diff --git a/docs/src/reference/the-traversal.asciidoc
b/docs/src/reference/the-traversal.asciidoc
index c9ef3c24df..5f2fb8c443 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -5378,6 +5378,7 @@ location. Please see the <<io-step,documentation>> for
`io()`-step for more comp
link:++https://tinkerpop.apache.org/javadocs/x.y.z/full/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html#write()++[`write()`]
+[llms-summary="A note on predicates used in Gremlin traversals, including
standard and text predicates."]
[[a-note-on-predicates]]
== A Note on Predicates
@@ -5459,6 +5460,7 @@ g.V().as('a').both().both().as('b').count()
g.V().as('a').both().both().as('b').where('a',neq('b')).count()
----
+[llms-summary="A note on maps in Gremlin, including differences in behavior
between embedded and remote contexts."]
[[a-note-on-maps]]
== A Note on Maps
@@ -5532,6 +5534,7 @@ g.V().hasLabel('person').both().group().by(constant(id))
g.V().hasLabel('person').both().group().by('age').select(constant(32))
----
+[llms-summary="A note on barrier steps in Gremlin, including collecting,
reducing, and supplying barriers."]
[[a-note-on-barrier-steps]]
== A Note on Barrier Steps
@@ -5558,6 +5561,7 @@ possible at the current, local vertex. What it can't
compute without referencing
into a barrier collection. When there are no more traversers at the local
vertex, the barriered traversers are the
messages that are propagated to remote vertices for further processing.
+[llms-summary="A note on scopes in Gremlin, including local and global scope
usage."]
[[a-note-on-scopes]]
== A Note on Scopes
@@ -5615,6 +5619,7 @@ g.V().fold().local(unfold().count())
g.V().fold().count(local)
----
+[llms-summary="A note on lambdas in Gremlin, including their usage,
limitations, and alternatives."]
[[a-note-on-lambdas]]
== A Note On Lambdas
@@ -5659,7 +5664,7 @@ g.V().out().out().path().by('name').
<2> The length-3 paths have their objects transformed by a lambda-less step
and a traversal lambda. (*good*)
[[traversalstrategy]]
-[llms-summary="How TraversalStrategy implementations analyze and rewrite
traversals at compile time (decoration, optimization, finalization,
verification) and how to author custom strategies."]
+[llms-summary="How TraversalStrategy implementations analyze and rewrite
traversals at compile time (decoration, optimization, finalization,
verification) and how to author custom strategies.",allow-oversize="true"]
== TraversalStrategy
image:traversal-strategy.png[width=125,float=right] A `TraversalStrategy`
analyzes a `Traversal` and, if the traversal
diff --git a/docs/src/tutorials/the-gremlin-console/index.asciidoc
b/docs/src/tutorials/the-gremlin-console/index.asciidoc
index ac93561dfb..cbd1a57682 100644
--- a/docs/src/tutorials/the-gremlin-console/index.asciidoc
+++ b/docs/src/tutorials/the-gremlin-console/index.asciidoc
@@ -24,7 +24,7 @@
image::apache-tinkerpop-logo.png[width=500,link="https://tinkerpop.apache.org"]
*x.y.z*
-[llms-summary="A tutorial on using the Gremlin Console: the interactive REPL
for working with graphs, running traversals, and connecting to remote servers."]
+[llms-summary="A tutorial on using the Gremlin Console: the interactive REPL
for working with graphs, running traversals, and connecting to remote
servers.",allow-oversize="true"]
== The Gremlin Console
In
link:https://tinkerpop.apache.org/docs/x.y.z/tutorials/getting-started/#_the_first_five_minutes["The
First Five Minutes"]