diff --git a/config.php b/config.php
index 077a1ed..d0393a5 100644
--- a/config.php
+++ b/config.php
@@ -97,6 +97,29 @@ return [
"vc_roww" => function ($attr) {
$text = $attr["text"] ?? "";
return "
".$text."
";
- }
+ },
+ "vc_column" => function ($attr) {
+ $text = $attr["text"] ?? "";
+ return "".$text."
";
+ },
+ "vc_column_text" => function ($attr) {
+ $text = $attr["text"] ?? "";
+ return "".$text."
";
+ },
+ "vc_single_image" => function ($attr) {
+ $imageID = $attr["image"] ?? "";
+ return "".$imageID."
";
+ },
+ "vc_empty_space" => function () {
+ return "";
+ },
+ "vc_raw_html" => function ($attr) {
+ $text = $attr["text"] ?? "";
+ $raw = "";
+ if (strlen($text) > 0) {
+ $raw = base64_decode($text);
+ }
+ return $raw;
+ },
]
];