How can i make a hard break here?

Hello everyone. id like to have a hard break or just empty space so i could detect link as separate elements.
Source mode -


Edit mode (i want the same in reading mode) -

Reading mode -

I ve tried method with \ Enter Tab,
and css snippet (cuz i use ipad) but everything is so inconveniently cuz im making huge video library n i wanna fast way with hard breaks.
Thanks for help!

“br” method ive tried as well

Use   and separate that with empty lines.

is there other way

Use a markdown horizontal rule:

---

(also, if you don’t use horizontal rules for any other purpose, you can style them via css to make them invisible, and and adjust the vertical spacing to your taste)

You could give this CSS snippet a go:

.el-pre:has(> .block-language-vid) + .el-pre > .block-language-vid {
	padding-top: 36px;
}

I don’t know what you’re using to render your “vid” code so couldn’t test, but that’s the way it would typically work for any language. If it doesn’t work for you, then this more general version ought to put space between all code blocks regardless of language, and it might be more efficient:

.el-pre + .el-pre {
	padding-top: 36px;
}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.