xpqz / learnapl

Introduction to Dyalog APL: https://xpqz.github.io/learnapl
Other
126 stars 11 forks source link

“Introduction” revision #2

Closed rodrigogiraoserrao closed 3 years ago

rodrigogiraoserrao commented 3 years ago

Revision

Here I include all of the things that, to the best of my knowledge and experience, should be changed/corrected.

To consider

In here I include things that, from my point of view, would be nice additions/modifications.

rodrigogiraoserrao commented 3 years ago

Consider going from to ⎕← for explicit output, e.g.

⊢v ← 9?9
⍝ becomes
⎕← v ← 9?9
xpqz commented 3 years ago

On code you write in other languages suddenly become -- I think this is the correct form, treating code as plural.

https://www.wordhippo.com/what-is/the-plural-of/code.html

xpqz commented 3 years ago

Still can't get the ~overstrike~ to render properly in the jupyterbook html. Tried the double-tilde but no workie.

xpqz commented 3 years ago

Mostly fixed in #2ef1e34

Leaving issue open for now.

rodrigogiraoserrao commented 3 years ago

On code you write in other languages suddenly become -- I think this is the correct form, treating code as plural.

https://www.wordhippo.com/what-is/the-plural-of/code.html

I think "code" here is uncountable (like the link also says it can be) and, therefore, handled as if singular. I always think about the words "rice" or "money". You wouldn't say "rice become cooked after boiling for a bit", nor would you say "my money become wrinkled after I stuff it in my pockets."; in both you'd use "becomes".

rodrigogiraoserrao commented 3 years ago

Still can't get the ~overstrike~ to render properly in the jupyterbook html. Tried the double-tilde but no workie.

The jupyter book markdown cheatsheet doesn't talk about strikethrough (https://jupyterbook.org/reference/cheatsheet.html) nor can I find anything about it in two other cheatsheets I reference recurringly (https://www.markdownguide.org/basic-syntax/ and https://daringfireball.net/projects/markdown/syntax#em). Maybe use the <s> HTML tag? Using it inline should work without any problem.

xpqz commented 3 years ago

Ah yes, inline html does the job.

xpqz commented 3 years ago

Fixed as part of the larger c04f45f