@@ -37,21 +37,16 @@ namespace libsemigroups {
3737 // //////////////////////////////////////////////////////////////////////////
3838 py::class_<Dot> dot (m,
3939 " Dot" ,
40- R"pbdoc( A representation of a graph in the `DOT
41- <https://www.graphviz.org/doc/info/lang.html>`_
42- language of `Graphviz <https://www.graphviz.org>`_.
40+ R"pbdoc( A representation of a graph in the DOT_ language
41+ of Graphviz_.
4342
4443This class facilitates the creation and rendering of graph descriptions in the
45- `DOT <https://www.graphviz.org/doc/info/lang.html>`_
46- language of the `Graphviz <https://www.graphviz.org>`_ graph drawing software.
47- This class is fairly rudimentary, and is not intended to implement every
48- feature of the `DOT <https://www.graphviz.org/doc/info/lang.html>`_ language.
49- You can create a :any:`Dot` object, assemble the graph by adding nodes and
50- edges, attributes, labels, colours, subgraphs, and clusters, and retrieve its
51- `DOT <https://www.graphviz.org/doc/info/lang.html>`_
52- source code string (:any:`Dot.to_string`). Write the source code to a file and
53- render it with the `Graphviz <https://www.graphviz.org>`_
54- installation on your system.
44+ DOT_ language of the Graphviz_ graph drawing software. This class is fairly
45+ rudimentary, and is not intended to implement every feature of the DOT_
46+ language. You can create a :any:`Dot` object, assemble the graph by adding nodes
47+ and edges, attributes, labels, colours, subgraphs, and clusters, and retrieve
48+ its DOT_ source code string (:any:`Dot.to_string`). Write the source code to a
49+ file and render it with the Graphviz_ installation on your system.
5550)pbdoc" );
5651
5752 // //////////////////////////////////////////////////////////////////////////
@@ -467,9 +462,7 @@ Returns the edge object with head named *head* and tail named *tail*.
467462 R"pbdoc(
468463Convert a :any:`Dot` object to a string. This function returns the string
469464representation of the :any:`Dot` object. This string contains a
470- representation of the graph in the `DOT
471- <https://www.graphviz.org/doc/info/lang.html>`_ language for `Graphviz
472- <https://www.graphviz.org>`_.
465+ representation of the graph in the DOT_ language for Graphviz_.
473466
474467:returns:
475468 The string representation of *self*.
0 commit comments