This preprocessor changes if props to svelte's if tag
changes below code
<button if={2 + 2 === 4}> Show </button>
to:
{#if 2 + 2 === 4} <button> Show </button> {/if}
https://gist.github.com/mizchi/d9be0ec969203f32f66e5f6eda9decb9