I want to apply rich-text formatting (Markdown language) on comments which added through Podio-Comments API. I've added but it didn't work for me. How can I do that?
<?php
error_reporting(0);
require_once 'config.php';
include 'podio_api.php';
echo "START";
// Podio authentication
podioAuthentication();
if (Podio::is_authenticated()) {
$ref_type = "item";
$ref_id = 603929471;
$response = PodioComment::get_for($ref_type, $ref_id);
$comments = '';
foreach ($response as $object) {
$comment = $object->value;
$date = $object->created_on;
$created_on = $date->format('Y-m-d H:i:s');
// Add comment
$comments .= "*[Created_On]* $created_on <br /> **[Comment]** $comment <br />";
}
$ref_id = 649113086;
$attributes = ['alert_invite' => FALSE,
'hook' => FALSE,
'silent' => FALSE,
'value' => $comments
];
$comment_add = PodioComment::create($ref_type, $ref_id, $attributes);
var_dump($comment_add);
echo "DONE";
} else {
echo "authentication error";
}