Fixed some links and added styling for blockquote

This commit is contained in:
jos 2017-01-23 21:55:44 +01:00
parent 757680d139
commit cb6ffe21cf
4 changed files with 13 additions and 7 deletions

View File

@ -239,6 +239,13 @@ pre code {
padding: inherit;
}
blockquote {
color: #777;
border-left: 0.3em solid #ddd;
margin: 1em 1em;
padding: 0 2em;
}
#commandline {
width: 100%;
height: 300px;

View File

@ -34,8 +34,8 @@ console.log(simplified.eval({x: 4})); // 12
For more details on the theory of expression simplification, see:
- http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions
- https://en.wikipedia.org/wiki/Symbolic_computation#Simplification
- [Strategies for simplifying math expressions (Stackoverflow)](http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions)
- [Symbolic computation - Simplification (Wikipedia)](https://en.wikipedia.org/wiki/Symbolic_computation#Simplification)
<h2 id="derivative">Derivative <a href="#derivative" title="Permalink">#</a></h2>
@ -61,4 +61,4 @@ console.log(dh.eval({x: 3})); // '7'
The rules used by `math.derivative` can be found on Wikipedia:
- http://en.wikipedia.org/wiki/Differentiation_rules
- [Differentiation rules (Wikipedia)](http://en.wikipedia.org/wiki/Differentiation_rules)

View File

@ -12,8 +12,8 @@ second parameter. If there are multiple variables in the expression,
it will return a partial derivative.
This uses rules of differentiation which can be found here:
http://en.wikipedia.org/wiki/Differentiation_rules
- [Differentiation rules (Wikipedia)](http://en.wikipedia.org/wiki/Differentiation_rules)
<h2 id="syntax">Syntax <a href="#syntax" title="Permalink">#</a></h2>

View File

@ -26,9 +26,8 @@ and can be used as a basis to built a set of custom rules.
For more details on the theory, see:
- http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions
- https://en.wikipedia.org/wiki/Symbolic_computation#Simplification
- [Strategies for simplifying math expressions (Stackoverflow)](http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions)
[Symbolic computation - Simplification (Wikipedia)](https://en.wikipedia.org/wiki/Symbolic_computation#Simplification)
<h2 id="syntax">Syntax <a href="#syntax" title="Permalink">#</a></h2>