adjust encrypted content representation and also add it to bb_to_markdown

This commit is contained in:
Mario
2024-03-15 22:34:27 +00:00
parent 826ef11247
commit f3efdbf230
2 changed files with 28 additions and 9 deletions

View File

@@ -297,20 +297,20 @@ function bb_parse_crypt($match) {
*/
function bb_parse_b64_crypt($match) {
if(empty($match[2]))
if(empty($match[1])) {
return;
}
$r .= '<code>';
$r .= '----- ENCRYPTED CONTENT -----' . '<br>';
$r .= $match[2] . '<br>';
$r .= '----- END ENCRYPTED CONTENT -----';
$r .= '</code>';
$r = '-----BEGIN ENCRYPTED MESSAGE-----' . "\n";
$r .= $match[1] . "\n";
$r .= '-----END ENCRYPTED MESSAGE-----' . "\n";
$r = '<code>' . str_replace("\n", '<br>', wordwrap($r, 75, "\n", true)) . '</code>';
return $r;
}
function bb_parse_app($match) {
$app = Zotlabs\Lib\Apps::app_decode($match[1]);