降价文字始终左对齐。在Markdown中,有没有办法做到右对齐和合理性?
确切地说,我在Jupyter Notebook(IPython)中使用Markdown 。
降价文字始终左对齐。在Markdown中,有没有办法做到右对齐和合理性?
确切地说,我在Jupyter Notebook(IPython)中使用Markdown 。
text
。{:style =“ text-align:justify”}
Answers:
不能在本机markdown中对齐文本。但是,您可以使用内联HTML标签对齐文本。
<div style="text-align: right"> your-text-here </div>
为了证明这一点,在上面替换right
为justify
。
<div style="text-align: right"> [up](https://github.com/loretoparisi/CapsNet#CapsNet) </div>
不会被呈现为链接一样。
<a href="https://your-site.com">Your link</a>
在🤷️中使用标签
如果要在表单中右对齐,可以尝试:
| Option | Description |
| ------:| -----------:|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
https://learn.getgrav.org/content/markdown#right-aligned-text
如果要在Jupyter Notebook中使用对齐对齐,请使用以下语法:
<p style='text-align: justify;'> Your Text </p>
为了正确对齐:
<p style='text-align: right;'> Your Text </p>
justify
选项;其他帖子只谈论右对齐。该选项似乎也可以与div
标记一起使用。太糟糕了,我只能接受一个答案:)
p { text-align: justify; }
到CSS中。另外,您还可以添加ul { text-align: justify; }
列表元素。
如此处所述,降价不支持右对齐的文本或块。但是HTML结果是通过级联样式表(CSS)实现的。
在我的Jekyll博客上使用的是也可在markdown中使用的语法。要“终止”一个块,请在结尾处使用两个空格或在新行中使用两次。
当然,您也可以添加{: .right }
而不是的CSS类{: style="text-align: right" }
。
文字右边
{: style="text-align: right" }
This text is on the right
文字为方块
{: style="text-align: justify" }
This text is a block