feat: improve matheq wordings

This commit is contained in:
swve 2023-05-07 18:56:27 +02:00
parent 7dcb299d1d
commit 8043f280d8

View file

@ -33,6 +33,7 @@ function MathEquationBlockComponent(props: any) {
<button onClick={() => setIsEditing(true)}> <button onClick={() => setIsEditing(true)}>
<Edit size={15}></Edit> <Edit size={15}></Edit>
</button> </button>
<span className="pl-2">Edit</span>
</MathEqTopMenu> </MathEqTopMenu>
)} )}
<BlockMath>{equation}</BlockMath> <BlockMath>{equation}</BlockMath>
@ -44,7 +45,7 @@ function MathEquationBlockComponent(props: any) {
<Save size={15}></Save> <Save size={15}></Save>
</button> </button>
</EditBar> </EditBar>
<span className="pt-2 text-zinc-500 text-sm">Please refer to this <Link className="text-zinc-900 after:content-['↗']" href="https://katex.org/docs/supported.html" target="_blank"> guide</Link> for supported functions </span> <span className="pt-2 text-zinc-500 text-sm">Please refer to this <Link className="text-zinc-900 after:content-['↗']" href="https://katex.org/docs/supported.html" target="_blank"> guide</Link> for supported TeX functions </span>
</> </>
)} )}