or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Nushell core team meeting 2024-04-24
Attendees
Agenda
plugin add
,plugin use
, etc.bytes at
andstr substring
are exclusive at the end bound.Discussed Topics
Issues
Plugin Update
Working well.
$nu.plugin-path converted flawlessly for all who answered.
Still want to have
to msgpackz
/from msgpackz
to make working with plugin registry easier.We need to keep working on the TUI plugin scenarios. We need to have a minimalistic plugin in our repo that we can test TUI scenarios.
The current testing is with amtoine's nu_plugin_explore and it launches but fails randomly sometimes with
tick
orq
or other keybindings.Completions Bug
Tests already exist for external completers, not sure if there are any for internal completions.
Lazy Record Removal
Let's remove it. Deprecate it for 0.93.0 and then removal in the next release.
sys
- darren suggested just revert it to the way it was and then we can go from there.startup hook
Seems fixed for startup-times with
| collect {}
or setting to a variable.amtoine found another issue related to
from ndjson
/to ndjson
and he will be filing an issue with it.Ls glob
We're looking for input on issue 12641 on what "right" looks like for nushell, regardless of what it does in bash.
Ranges
Current syntaxes:
0..10
(inclusive end),0..=10
(inclusive end),0..<10
(exclusive end).0..10
in the repl would print from 0 up to and including 9.