私は半ダースのリストを持つReadmeを持っています。Github Markdownのリスト項目の間に余分な行が表示される
すべては2番目から最後のリストまでうまく動作します。問題は、これらのリスト項目の間に余分な改行が表示されることです。これは、スクリーンショットをより明確になります:私は崇高なテキストでMarkdownをプレビューパッケージを使用していると私はGithubのMarkdownをプリプロセッサを使用してプレビューする場合、私は同じ書式の問題を参照してください
。
最も奇妙な何、しかし、あなたは次の文字列を使用して、自分を試してみたい場合は、私がhttps://jbt.github.io/markdown-editor
に私のテキストを入力する場合、私は同じ問題が表示されないということです。
_git_
- **gl**: `git log <optional args>` _shows the revision history_
- **gpoh**: `git push origin head` _pushes the current branch_
- **gpom**: `git push origin master` _pushes the master branch_
- **grv**: `git remote -v` _lists the remotes_
- **gs**: `git status` _shows unstaged & staged changes_
- **gacm**: `git add -A; git commit -m "<message>"` _commits all changes with a message_
- **gacm-lfs**: `sudo git add -A; sudo git commit -m <message>` _it might not be this way for everyone,
but for me `sudo git` uses git-lfs (git large filesystem) while `git` uses regular git. This function
adds and commits all files with a message in a git-lfs repo._
- **gc**: `git checkout <branch>` _changes branches_
- **gclo**: `git clone <repo>` _clones a repo_
- **get_branch**: `git branch -f origin/<branch>; git checkout <branch>` _gets a specific branch from a remote repo_
_fish meta functions_
- **backup_functions**: `cd ~/.config/fish/functions; git add -A; git commit -m "<message>"; git push origin master; cd -` _backups the functions folder into a repo_
- **cdfns**: `cd ~/.config/fish/functions` _changes into the functions dir_
- **cfn**: `cat ~/.config/fish/functions/<name>.fish` _shows the definition of a function_
- **efn**: `nano ~/.config/fish/functions/<name>.fish` _edits a function's definition (using nano)_
- **fn**: `echo -e "function $argv[1]\n $argv[2]\nend" > ~/.config/fish/functions/$argv[1].fish` _create a function_
- **fns**: `ls ~/.config/fish/functions` _list functions_
- **rmfn**: `rm ~/.config/fish/functions/<name>.fish` _remove a function_
- **fndoc**: `echo -e "- <text>" >> ~/.config/fish/functions/README.md` _adds a line to the readme documenting a function_
- **fs**: `funcsave <name>` _alias for funcsave, e.g.:_
function fs
funcsave $argv
end
fs fs
ありがとう、この区別を知らなかった。それが厳しいリストになるように強制する方法はありますか? –
あなたのリストに空白行が全くない場合は、ブロックレベルの構造(コードブロックなし)がないことを意味します。 – Waylan
最後に、いくつかの実装が異なる動作を示す理由についての説明を追加しました。 – Waylan