-
### Description
When a named function argument contains a `-` in it's name, this argument can't be passed in math mode:
```typst
#let func(my-body: none) = my-body
$ func(my-body: a) $
```
…
-
Have an advanced mode where expressions can be typed in rather than assembled from blocks
dethe updated
9 years ago
-
# Simple grammar = maintainable grammar
This grammar has to be maintainable. To be maintainable, the grammar has to be simple.
One way to keep things simple is to do things naively. But a naive …
uben0 updated
9 months ago
-
This issue is intended to track the status of Python 3.9 core features as implemented by MicroPython.
Python 3.9.0 (final) was released on the 5th October 2020. The Features for 3.9 are defined in …
-
I think it is awesome that functions like `Log` are supported 🙌
## Problem
However, I cannot seem to figure out how to use something like `log_e(x)`.
I would expect this to use `e` as the bas…
-
### Describe the bug
When a function parameter has a default value, and that parameter is not used, the parameter (and consequently the whole function) are not optimized away.
### Input code
```t…
-
I have a markdown cell that, in its raw form, is:
```R
r2gtr(clust_row,file=out_gtr, distance=clust_row$dist.method, dec='.', digits=5)
r2atr(clust_col,file=out_atr, distance=clust_co…
-
## Reproduction
```js
import { compile } from './index.js';
const { toc } = await compile({
value: `# Title
## Foo {#my-anchor}
## Bar {Math.PI}
`,
filepath: 'README.mdx',
devel…
-
For some reason, evaluating `help(not)` throws an error. For example:
```js
// Works fine
console.log(math.evaluate('help(and)'));
// "SyntaxError: Value expected (char 9)"
console.log(math.e…
-
I've modified the htmlTemplate for Brackets, in order to represent intervals. That is, I need to display [x, y] or (x, y).
This is my code:
```
var Bracket = P(MathCommand, function(_, _super) {
_…