HTML Parser для MetaFor - v2.3.2
    Preparing search index...

    Type Alias ValueBoolean

    ValueBoolean: boolean | ValueVariable | ValueDynamic

    Булевые атрибуты. HTML атрибуты, которые присутствуют или отсутствуют (hidden, disabled, checked).

    <input type="checkbox" ${core.user.isSubscribed && "checked"} />
    <button ${!context.canSubmit && "disabled"}>Отправить</button>
    <div ${!context.isVisible && "hidden"}>Скрытый контент</div>