Use plain text instead of latexmath

As latexmath is not rendered, using plain text instead

Closes #37718
This commit is contained in:
Mayya Sharipova 2019-01-22 16:49:03 -05:00 committed by GitHub
parent c28479819e
commit 942fc13af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ rewriting equivalent functions of your own, as these functions try
to be the most efficient by using the internal mechanisms.
===== rational
latexmath:[rational(value,k) = value/(k + value)]
`rational(value,k) = value/(k + value)`
[source,js]
--------------------------------------------------
@ -64,7 +64,7 @@ latexmath:[rational(value,k) = value/(k + value)]
// NOTCONSOLE
===== sigmoid
latexmath:[sigmoid(value, k, a) = value^a/ (k^a + value^a)]
`sigmoid(value, k, a) = value^a/ (k^a + value^a)`
[source,js]
--------------------------------------------------