Skip to content

Commit 93dfe5e

Browse files
committed
Adjust internal image links to docs
1 parent 79c16b7 commit 93dfe5e

File tree

117 files changed

+215
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+215
-215
lines changed

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ There are many ways in which you can contribute to this library:
1111

1212
* Testing the library in new environments <sup>see [1](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22cross-platform+issue+-+windows%22), [2](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22cross-platform+issue+-+linux%22), [3](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22cross-platform+issue+-+macos%22) </sup>
1313
* Contributing with interesting examples <sup>see [1](../source/examples)</sup>
14-
* Designing new backends <sup>see [1](....inREADME.md#backendsnds/ogl_main.cppckend_interface.h), [2](test/backends/ogl_main.cpp), [3](#backends), [4](docs/README.md#backends)</sup>
14+
* Designing new backends <sup>see [1](../source/matplot/backend/backend_interface.h), [2](../test/backends/ogl_main.cpp), [3](integration/backends.md), [4](README.md#backends)</sup>
1515
* Finding problems in this documentation <sup>see [1](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22enhancement+-+documentation%22) </sup>
1616
* Writing algorithms for new plot categories <sup>see [1](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22enhancement+-+plot+categories%22) </sup>
1717
* Finding bugs in general <sup>see [1](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug+-+compilation+error%22), [2](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug+-+compilation+warning%22), [3](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug+-+runtime+error%22), [4](https://github.com/alandefreitas/matplotplusplus/issues?q=is%3Aopen+is%3Aissue+label%3A%22bug+-+runtime+warning%22) </sup>

docs/examples/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ has_toc: false
88
---
99
# Annotations
1010

11-
[Text](annotationsannoannaanannotations/line.mdions/arrow.mdions/textbox.md/ellipse.mdtations/filled-polygon.mddions/text-with-arrow.mdith Arrow](#text-with-arrow) | [Rectangle](#rectangle) | [Filled Polygon](#filled-polygon) | [Ellipse](#ellipse) | [Textbox](#textbox) | [Arrow](#arrow) | [Line](#line)
11+
[Text](annotations/text.md) | [Text with Arrow](annotations/text-with-arrow.md) | [Rectangle](annotations/rectangle.md) | [Filled Polygon](annotations/filled-polygon.md) | [Ellipse](annotations/ellipse.md) | [Textbox](annotations/textbox.md) | [Arrow](annotations/arrow.md) | [Line](annotations/line.md)
1212

1313
The annotations category is meant to create individual objects on the plot rather than representations of data sets. An important difference between the annotations category and other categories is that, by default, the annotations do not replace the plot that already exists in the `axes` object, even if the user does not call the `hold` function.
1414

docs/examples/annotations/arrow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ arrow(x1, y1, x2, y2);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/arrow/arrow_1.cppamples/annotations/arrow/arrow_1.cpp)
19+
[![example_arrow_1](arrow/arrow_1.svg)](../../../examples/annotations/arrow/arrow_1.cpp)
2020
2121
More examples:
2222
23-
[![e../../../examples/annotations/arrow/arrow_2.cppg)](examples/annotations/arrow/arrow_2.cpp)
23+
[![example_arrow_2](arrow/arrow_2_thumb.png)](../../../examples/annotations/arrow/arrow_2.cpp)
2424
2525
2626

docs/examples/annotations/ellipse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ellipse(x, y, w, h);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/ellipse/ellipse_1.cppexamples/annotations/ellipse/ellipse_1.cpp)
19+
[![example_ellipse_1](ellipse/ellipse_1.svg)](../../../examples/annotations/ellipse/ellipse_1.cpp)
2020
2121
2222

docs/examples/annotations/filled-polygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ polygon(x0, y0, color);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/fill/fill_1.cppmples/annotations/fill/fill_1.cpp)
19+
[![example_fill_1](fill/fill_1.svg)](../../../examples/annotations/fill/fill_1.cpp)
2020
2121
2222

docs/examples/annotations/line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ line(x1, y1, x2, y2);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/line/line_1.cppmples/annotations/line/line_1.cpp)
19+
[![example_line_1](line/line_1.svg)](../../../examples/annotations/line/line_1.cpp)
2020
2121
2222

docs/examples/annotations/rectangle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ rectangle(x, y, w, h);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/rectangle/rectangle_1.cpp](examples/annotations/rectangle/rectangle_1.cpp)
19+
[![example_rectangle_1](rectangle/rectangle_1.svg)](../../../examples/annotations/rectangle/rectangle_1.cpp)
2020
2121
More examples:
2222
23-
[![e......../../../examples/annotations/rectangle/rectangle_5.cppb.pngample_rectangle_3](docs/examples/annotations/rectangle/rectangle_3_thumb.png)](examples/annotations/rectangle/rectangle_3.cpp) [![example_rectangle_4](docs/examples/annotations/rectangle/rectangle_4_thumb.png)](examples/annotations/rectangle/rectangle_4.cpp) [![example_rectangle_5](docs/examples/annotations/rectangle/rectangle_5_thumb.png)](examples/annotations/rectangle/rectangle_5.cpp)
23+
[![example_rectangle_2](rectangle/rectangle_2_thumb.png)](../../../examples/annotations/rectangle/rectangle_2.cpp) [![example_rectangle_3](rectangle/rectangle_3_thumb.png)](../../../examples/annotations/rectangle/rectangle_3.cpp) [![example_rectangle_4](rectangle/rectangle_4_thumb.png)](../../../examples/annotations/rectangle/rectangle_4.cpp) [![example_rectangle_5](rectangle/rectangle_5_thumb.png)](../../../examples/annotations/rectangle/rectangle_5.cpp)
2424
2525
2626
The rectangle object can have a border curvature from $0$ to $1$. We can also annotate with text, arrows, polygons, and lines.

docs/examples/annotations/text-with-arrow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ textarrow(x1, y1, x2, y2, str);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/textarrow/textarrow_1.cpp](examples/annotations/textarrow/textarrow_1.cpp)
19+
[![example_textarrow_1](textarrow/textarrow_1.svg)](../../../examples/annotations/textarrow/textarrow_1.cpp)
2020
2121
More examples:
2222
23-
[![e../../../examples/annotations/textarrow/textarrow_2.cppb.png)](examples/annotations/textarrow/textarrow_2.cpp)
23+
[![example_textarrow_2](textarrow/textarrow_2_thumb.png)](../../../examples/annotations/textarrow/textarrow_2.cpp)
2424
2525
2626

docs/examples/annotations/text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ text(x0, y0, str);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/text/text_1.cppmples/annotations/text/text_1.cpp)
19+
[![example_text_1](text/text_1.svg)](../../../examples/annotations/text/text_1.cpp)
2020
2121
More examples:
2222
23-
[![e............../../../examples/annotations/text/text_8.cppmples/annotations/text/text_3.cpp) [![example_text_4](docs/examples/annotations/text/text_4_thumb.png)](examples/annotations/text/text_4.cpp) [![example_text_5](docs/examples/annotations/text/text_5_thumb.png)](examples/annotations/text/text_5.cpp) [![example_text_6](docs/examples/annotations/text/text_6_thumb.png)](examples/annotations/text/text_6.cpp) [![example_text_7](docs/examples/annotations/text/text_7_thumb.png)](examples/annotations/text/text_7.cpp) [![example_text_8](docs/examples/annotations/text/text_8_thumb.png)](examples/annotations/text/text_8.cpp)
23+
[![example_text_2](text/text_2_thumb.png)](../../../examples/annotations/text/text_2.cpp) [![example_text_3](text/text_3_thumb.png)](../../../examples/annotations/text/text_3.cpp) [![example_text_4](text/text_4_thumb.png)](../../../examples/annotations/text/text_4.cpp) [![example_text_5](text/text_5_thumb.png)](../../../examples/annotations/text/text_5.cpp) [![example_text_6](text/text_6_thumb.png)](../../../examples/annotations/text/text_6.cpp) [![example_text_7](text/text_7_thumb.png)](../../../examples/annotations/text/text_7.cpp) [![example_text_8](text/text_8_thumb.png)](../../../examples/annotations/text/text_8.cpp)
2424
2525
2626

docs/examples/annotations/textbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ textbox(x, y, w, h, str);
1616
1717
See result
1818
19-
[![e../../../examples/annotations/textbox/textbox_1.cppexamples/annotations/textbox/textbox_1.cpp)
19+
[![example_textbox_1](textbox/textbox_1.svg)](../../../examples/annotations/textbox/textbox_1.cpp)
2020
2121
2222

0 commit comments

Comments
 (0)