How to indent a few lines in Markdown markup?

后端 未结 22 723
予麋鹿
予麋鹿 2020-12-12 08:42

I want to write a few lines of text. They should be formatted normally except each line should start at the 6th column. I.e. I don\'t want the code block formatting rule to

22条回答
  •  抹茶落季
    2020-12-12 09:02

    Okay, with a little HTML in your R code, I did the following code to generate pure text in R Markdown. The

    indents the text 15 spaces. For the original question, change the 15 to 6.

    ## Option: Du Pont Ratio Concept - (ROE Decomposition)
    ### (Closed Quotes/Total Premium) = (Closed Quotes/Quotes Issued) X 

    (Quotes Issued/Renewal Premium) X

    (Renewal Premium/Total Premium)

    So the resulting code gives my desired output format. I am using tabs for the Markdown document and was looking to line up the () text which worked.

提交回复
热议问题