如何在Bitbucket降价中写一个新行?

时间:2014-03-13 16:44:23

标签: newline markdown bitbucket

是否可以在Bitbucket降价中写一个新行(不是段落)?

源中的两个新行创建一个新段落。我只想要一条新线。而且我不想使用代码块。

6 个答案:

答案 0 :(得分:240)

有可能,如Issue #7396中所述:

  

当你想要使用Markdown插入<br />中断标记时,你结束一个包含两个或更多空格的行,然后输入 return Enter

答案 1 :(得分:76)

现在可以添加强制换行符 在行尾两个空格

import java.awt.Dimension
import javax.swing.ImageIcon

import scala.swing.event.UIElementResized
import scala.swing.{BorderPanel, BoxPanel, Label, MainFrame, Orientation, SimpleSwingApplication}

object CViewerMainWindow extends SimpleSwingApplication {
    var i = 0

    def drawPages(left: Label, right: Label, size: Dimension): Unit = {
        //resize to match window
    }

    def top = new MainFrame {
        title = "Work in Progress"
        preferredSize = new Dimension(320, 240)
        var leftPage = new Label {new ImageIcon("/Users/Matt/learning-scala/learning-GUI/001.jpg")}
        var rightPage = new Label {new ImageIcon("/Users/Matt/learning-scala/learning-GUI/002.jpg")}
        // maximize
        visible = true
//      contents = new BorderPanel {
//          layout(leftPage) = BorderPanel.Position.West
//          layout(rightPage) = BorderPanel.Position.East
//      }
        contents = new BorderPanel {
            layout(new BoxPanel(Orientation.Vertical) {
                contents += leftPage
            }) = BorderPanel.Position.West
            layout(new BoxPanel(Orientation.Vertical) {
                contents += rightPage
            }) = BorderPanel.Position.East
        }

        // contents = new Label("Here is the contents!")
        listenTo(this)
        reactions += {
            case UIElementResized(source) =>
                println(source.size)
                drawPages(leftPage, rightPage, size)
        }
    }
}

的格式为:

LINE1
LINE2

答案 2 :(得分:5)

在Github上,$event.stopPropagation()<p>解决了这个问题。

<br/>我想让它出现在一个新行中。在

之上引入额外的一行

<p>另一种方式

答案 3 :(得分:0)

我在bitbucket中也遇到了同样的问题,这对我有用:

line1
##<2 white spaces><enter>
line2

答案 4 :(得分:0)

2020年2月3日:

  • Atlassian Bitbucket v5.8.3本地安装。
  • 我想在水平线周围添加一条新线。 ---确实产生了这一行,但我无法使用新行来处理上面的建议。
  • 注意:我不想使用[space][space]的建议,因为我的编辑器在保存时删除了尾随空格,并且我喜欢此功能。

我最终这样做了:

TEXT...
<br><hr><br>
TEXT...

结果:

TEXT...
<AN EMPTY LINE>
----------------- AN HORIZONTAL LINE ----------------
<AN EMPTY LINE>
TEXT...

答案 5 :(得分:0)

只需使用一个连字符“-”:

Example:
First line
-
Second line

Result:
First line

Second line