-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.x.x' into fixing_link_finder_errors
# Conflicts: # docs/shared_c.cache
- Loading branch information
Showing
42 changed files
with
778 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,4 +95,4 @@ To update this documentation, run the following command: | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 27 15:10:16 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
<!-- {% raw %} --> | ||
<embed> <a href="/docs/README.md">BumbleDocGen</a> <b>/</b> <a href="/docs/tech/readme.md">Technical description of the project</a> <b>/</b> <a href="/docs/tech/1.configuration/readme.md">Configuration files</a> <b>/</b> PageLinkerPlugin<hr> </embed> | ||
|
||
<h1> | ||
<a href="https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Plugin/CorePlugin/PageLinker/PageLinkerPlugin.php#L29">PageLinkerPlugin</a> class: | ||
</h1> | ||
|
||
|
||
|
||
|
||
|
||
```php | ||
namespace BumbleDocGen\Core\Plugin\CorePlugin\PageLinker; | ||
|
||
final class PageLinkerPlugin extends \BumbleDocGen\Core\Plugin\CorePlugin\PageLinker\BasePageLinker implements \BumbleDocGen\Core\Plugin\PluginInterface, \Symfony\Component\EventDispatcher\EventSubscriberInterface | ||
``` | ||
|
||
<blockquote>Adds URLs to empty links in HTML format; | ||
Links may contain: | ||
1) Short entity name | ||
2) Full entity name | ||
3) Relative link to the entity file from the root directory of the project | ||
4) Page title ( title ) | ||
5) Template key ( BreadcrumbsHelper::getTemplateLinkKey() ) | ||
6) Relative reference to the entity document from the root directory of the documentation</blockquote> | ||
|
||
|
||
<b>Examples of using:</b> | ||
|
||
```php | ||
[a]Existent page name[/a] => <a href="/docs/some/page/targetPage.html">Existent page name</a> | ||
|
||
``` | ||
|
||
```php | ||
[a x-title="Custom title"]\Namespace\ClassName[/a] => <a href="/docs/some/page/ClassName.md">Custom title</a> | ||
|
||
``` | ||
|
||
```php | ||
[a]\Namespace\ClassName[/a] => <a href="/docs/some/page/ClassName.md">\Namespace\ClassName</a> | ||
|
||
``` | ||
|
||
```php | ||
[a]Non-existent page name[/a] => Non-existent page name | ||
|
||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
<h2>Initialization methods:</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="#m-construct">__construct</a> | ||
</li> | ||
</ol> | ||
|
||
<h2>Methods:</h2> | ||
|
||
<ol> | ||
<li> | ||
<a href="#mbeforecreatingdocfile">beforeCreatingDocFile</a> | ||
</li> | ||
<li> | ||
<a href="#mgetsubscribedevents">getSubscribedEvents</a> | ||
- <i>Returns an array of event names this subscriber wants to listen to.</i></li> | ||
</ol> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<h2>Method details:</h2> | ||
|
||
<div class='method_description-block'> | ||
|
||
<ul> | ||
<li><a name="m-construct" href="#m-construct">#</a> | ||
<b>__construct</b> | ||
<b>|</b> <a href="https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Plugin/CorePlugin/PageLinker/BasePageLinker.php#L20">source code</a></li> | ||
</ul> | ||
|
||
```php | ||
// Implemented in BumbleDocGen\Core\Plugin\CorePlugin\PageLinker\BasePageLinker | ||
|
||
public function __construct(\BumbleDocGen\Core\Renderer\Breadcrumbs\BreadcrumbsHelper $breadcrumbsHelper, \BumbleDocGen\Core\Parser\Entity\RootEntityCollectionsGroup $rootEntityCollectionsGroup, \BumbleDocGen\Core\Renderer\Twig\Function\GetDocumentedEntityUrl $getDocumentedEntityUrlFunction, \Psr\Log\LoggerInterface $logger); | ||
``` | ||
|
||
|
||
|
||
<b>Parameters:</b> | ||
|
||
<table> | ||
<thead> | ||
<tr> | ||
<th>Name</th> | ||
<th>Type</th> | ||
<th>Description</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>$breadcrumbsHelper</td> | ||
<td><a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Renderer/Breadcrumbs/BreadcrumbsHelper.php'>\BumbleDocGen\Core\Renderer\Breadcrumbs\BreadcrumbsHelper</a></td> | ||
<td>-</td> | ||
</tr> | ||
<tr> | ||
<td>$rootEntityCollectionsGroup</td> | ||
<td><a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Parser/Entity/RootEntityCollectionsGroup.php'>\BumbleDocGen\Core\Parser\Entity\RootEntityCollectionsGroup</a></td> | ||
<td>-</td> | ||
</tr> | ||
<tr> | ||
<td>$getDocumentedEntityUrlFunction</td> | ||
<td><a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Renderer/Twig/Function/GetDocumentedEntityUrl.php'>\BumbleDocGen\Core\Renderer\Twig\Function\GetDocumentedEntityUrl</a></td> | ||
<td>-</td> | ||
</tr> | ||
<tr> | ||
<td>$logger</td> | ||
<td><a href='https://github.com/php-fig/log/blob/master/src/LoggerInterface.php'>\Psr\Log\LoggerInterface</a></td> | ||
<td>-</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
|
||
|
||
</div> | ||
<hr> | ||
<div class='method_description-block'> | ||
|
||
<ul> | ||
<li><a name="mbeforecreatingdocfile" href="#mbeforecreatingdocfile">#</a> | ||
<b>beforeCreatingDocFile</b> | ||
<b>|</b> <a href="https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Plugin/CorePlugin/PageLinker/BasePageLinker.php#L73">source code</a></li> | ||
</ul> | ||
|
||
```php | ||
// Implemented in BumbleDocGen\Core\Plugin\CorePlugin\PageLinker\BasePageLinker | ||
|
||
public function beforeCreatingDocFile(\BumbleDocGen\Core\Plugin\Event\Renderer\BeforeCreatingDocFile $event): void; | ||
``` | ||
|
||
|
||
|
||
<b>Parameters:</b> | ||
|
||
<table> | ||
<thead> | ||
<tr> | ||
<th>Name</th> | ||
<th>Type</th> | ||
<th>Description</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>$event</td> | ||
<td><a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Plugin/Event/Renderer/BeforeCreatingDocFile.php'>\BumbleDocGen\Core\Plugin\Event\Renderer\BeforeCreatingDocFile</a></td> | ||
<td>-</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<b>Return value:</b> <a href='https://www.php.net/manual/en/language.types.void.php'>void</a> | ||
|
||
|
||
<b>Throws:</b> | ||
<ul> | ||
<li> | ||
<a href="https://github.com/PHP-DI/PHP-DI/blob/master/src/NotFoundException.php">\DI\NotFoundException</a></li> | ||
|
||
<li> | ||
<a href="https://github.com/PHP-DI/PHP-DI/blob/master/src/DependencyException.php">\DI\DependencyException</a></li> | ||
|
||
<li> | ||
<a href="/docs/tech/1.configuration/classes/ReflectionException.md">\BumbleDocGen\LanguageHandler\Php\Parser\Entity\Exception\ReflectionException</a></li> | ||
|
||
<li> | ||
<a href="/docs/tech/1.configuration/classes/InvalidConfigurationParameterException.md">\BumbleDocGen\Core\Configuration\Exception\InvalidConfigurationParameterException</a></li> | ||
|
||
</ul> | ||
|
||
</div> | ||
<hr> | ||
<div class='method_description-block'> | ||
|
||
<ul> | ||
<li><a name="mgetsubscribedevents" href="#mgetsubscribedevents">#</a> | ||
<b>getSubscribedEvents</b> | ||
<b>|</b> <a href="https://github.com/bumble-tech/bumble-doc-gen/blob/master/src/Core/Plugin/CorePlugin/PageLinker/BasePageLinker.php#L60">source code</a></li> | ||
</ul> | ||
|
||
```php | ||
// Implemented in BumbleDocGen\Core\Plugin\CorePlugin\PageLinker\BasePageLinker | ||
|
||
public static function getSubscribedEvents(): array; | ||
``` | ||
|
||
<blockquote>Returns an array of event names this subscriber wants to listen to.</blockquote> | ||
|
||
<b>Parameters:</b> not specified | ||
|
||
<b>Return value:</b> <a href='https://www.php.net/manual/en/language.types.array.php'>array</a> | ||
|
||
|
||
</div> | ||
<hr> | ||
|
||
<!-- {% endraw %} --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -206,6 +206,8 @@ The inheritance algorithm is as follows: scalar types can be overwritten by each | |
|
||
- <a href="/docs/tech/1.configuration/classes/PageHtmlLinkerPlugin.md">PageHtmlLinkerPlugin</a> | ||
|
||
- <a href="/docs/tech/1.configuration/classes/PageLinkerPlugin.md">PageLinkerPlugin</a> | ||
|
||
</td> | ||
<td>List of plugins</td> | ||
</tr> | ||
|
@@ -220,4 +222,4 @@ The inheritance algorithm is as follows: scalar types can be overwritten by each | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Thu Oct 5 17:42:06 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,4 +123,4 @@ These classes are a convenient wrapper for accessing data in templates: | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,4 +78,4 @@ Filter condition for working with entities PHP language handler: | |
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,4 +41,4 @@ In this section, we show how the parser works and what components it consists of | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ You can create your own source locators or use any existing ones. All source loc | |
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:09:56 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,4 +101,4 @@ Result after starting the documentation generation process: | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,4 @@ Here is an example of the result of the `generatePageBreadcrumbs` function: | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ plugins: | |
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,4 +263,4 @@ Here is a list of filters available by default: | |
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -385,4 +385,4 @@ Here is a list of functions available by default: | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Fri Oct 13 18:40:45 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,4 +60,4 @@ This process is presented in the form of a diagram below. | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ You can use the built-in functions and filters or add your own, so you can imple | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,4 @@ You can also implement your own functions for relinking if necessary. | |
|
||
<div id='page_committer_info'> | ||
<hr> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Sep 2 21:01:47 2023 +0300<br><b>Page content update date:</b> Fri Oct 27 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> | ||
<b>Last page committer:</b> fshcherbanich <[email protected]><br><b>Last modified date:</b> Sat Oct 28 11:03:31 2023 +0300<br><b>Page content update date:</b> Tue Oct 31 2023<br>Made with <a href='https://github.com/bumble-tech/bumble-doc-gen/blob/master/docs/README.md'>Bumble Documentation Generator</a></div> |
Oops, something went wrong.