diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 2824af1b..0d12be8d 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -93,7 +93,7 @@
Replaces tags with styles of backgroud-image
by <img />
tags.
backgroundToImg(mixed $htmlContent) : object
+
+Returns a DOM object (even if provided a string).
+Extract the first part of a string matching the specified start and end delimiters.
+function extractFromDelimiters(string $string, string $start, string $end) : mixed
+
+Returns the extracted string if delimiters were found and false otherwise.
+Example
+$string = '<div>Post author: John Doe</div>';
+$start = 'author: ';
+$end = '<';
+$extracted = extractFromDelimiters($string, $start, $end);
+
+// Output
+// 'John Doe'
+
+Remove one or more part(s) of a string using a start and end delmiters.
+It is the inverse of extractFromDelimiters
.
function stripWithDelimiters(string $string, string $start, string $end) : string
+
+Returns the cleaned string, even if no delimiters were found.
+Example
+$string = 'foo<script>superscript()</script>bar';
+$start = '<script>';
+$end = '</script>';
+$cleaned = stripWithDelimiters($string, $start, $end);
+
+// Output
+// 'foobar'
+
+Remove HTML sections containing one or more sections using the same HTML tag.
+function stripRecursiveHTMLSection(string $string, string $tag_name, string $tag_start) : string
+
+Example
+$string = 'foo<div class="ads"><div>ads</div>ads</div>bar';
+$tag_name = 'div';
+$tag_start = '<div class="ads">';
+$cleaned = stripRecursiveHTMLSection($string, $tag_name, $tag_start);
+
+// Output
+// 'foobar'
+
+Converts markdown input to HTML using Parsedown.
+function markdownToHtml(string $string) : string
+
+Example
+$input = <<<EOD
+RELEASE-2.8
+ * Share QR code of a token
+ * Dark mode improvemnet
+ * Fix some layout issues
+ * Add shortcut to launch the app with screenshot mode on
+ * Translation improvements
+EOD;
+$html = markdownToHtml($input);
+
+// Output:
+// <p>RELEASE-2.8</p>
+// <ul>
+// <li>Share QR code of a token</li>
+// <li>Dark mode improvemnet</li>
+// <li>Fix some layout issues</li>
+// <li>Add shortcut to launch the app with screenshot mode on</li>
+// <li>Translation improvements</li>
+// </ul>