# tableberg/1.1.5/renderer/CustomHtml/Defaults.php

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 25 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/renderer/CustomHtml/Defaults.php
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/renderer/CustomHtml/Defaults.php
- Modified: 2026-05-04T16:51:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/renderer/CustomHtml/Defaults.php#L10-L20`.

```php
<?php

/**
 * Custom HTML Element Defaults
 *
 * AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
 * Generated from: packages/tableberg/src/elements/custom-html/index.tsx
 *
 * @package Tableberg
 */

namespace Tableberg\Renderer\CustomHtml;

class Defaults {
    /**
     * @return array<string, mixed>
     */
    public static function get_defaults() {
        return [
            'content' => '',
            'align' => 'left',
        ];
    }
}

```
