I have custom block which has following code.
foreach ($video_result as $video){
$title = $video->title;
$video_body = $video->body_value;
}
var_dump($video_body);
$renderable = [
'#theme' => 'video-block',
'#title' => $title,
'#description' => $video_body
];
return $renderable;
And this return to twig file such as
<h6>Title {{ title }}</h6>
{{ description | raw}}
I get output as html on browser and when i inspect it i see html is wrap with double quotes. I have to render it as video on browser. What i am doing wrong here