阻止报价忽略空行并继续打开新报价

时间:2016-08-29 18:23:07

标签: php html css wordpress blockquote

以下照片显示每隔几行有一个空行的代码, 块引用忽略空行并将其视为报价结束并继续打开新报价。

这很奇怪,因为我为整个代码做了一次blockquote。

enter image description here

  

手动解决问题的方法是在空行上添加> br>“但是   这需要花费很多时间,因此必须在blockquote上添加修复程序   自我运作

这是本网站上使用相同代码的示例

   R3#show ip ospf database
    OSPF Router with ID (3.3.3.3) (Process ID 1)

    Router Link States (Area 1)                                   (This is type 1 )
    Link ID            ADV Router            Age          Seq#                  Checksum            Link count
    1.1.1.1               1.1.1.1                        1639        0x80000005      0x0011F5                     1
    2.2.2.2             2.2.2.2                      1645        0x80000005      0x00D22B                   1
    3.3.3.3             3.3.3.3                      1647        0x80000006      0x00FCAE                  2
    4.4.4.4            4.4.4.4                      1651         0x80000006     0x00D50C                   3
    5.5.5.5             5.5.5.5                       1646        0x80000004     0x001C0B                    2

    Net Link States (Area 1)                                        (This is type 2 )
    Link ID            ADV Router            Age           Seq#                   Checksum
    10.0.0.2            2.2.2.2                    1794          0x80000004     0x000CFA
    20.0.0.4           4.4.4.4                    1801           0x80000003     0x0015DE

    Summary Net Link States (Area 1)                    (This is type 3 )
    Link ID            ADV Router           Age        Seq#                    Checksum
    40.0.0.0           5.5.5.5                   1796       0x80000004        0x0047AC
    50.0.0.0           5.5.5.5                   1796       0x80000003        0x002BB5
    60.0.0.0           5.5.5.5                   1796       0x80000004        0x00B024
    70.0.0.0           5.5.5.5                   1798       0x80000003        0x004452
    80.0.0.0           5.5.5.5                   1799       0x80000004        0x0010A6
    90.0.0.0           5.5.5.5                   1799       0x80000003        0x00C6FA
    100.0.0.0         5.5.5.5                   1799       0x80000004        0x00A606
    110.0.0.0          5.5.5.5                   1799       0x80000003        0x009404

    Summary ASB Link States (Area 1)                   (This is type 4 )
    Link ID         ADV Router             Age         Seq#                    Checksum
    7.7.7.7             5.5.5.5                   1799        0x80000004      0x006490
    10.10.10.10     5.5.5.5                   1802        0x80000003      0x004A94

    Type-5 AS External Link States                         (This is type 5 )
    Link ID         ADV Router             Age         Seq#                      Checksum    Tag
    199.0.0.0      7.7.7.7                      363         0x80000004        0x0072FF     199
    200.0.0.0     10.10.10.10              172         0x80000001         0x00FF6D   200

这是我的blockquote规则

blockquote p {
    font-family: "Playfair Display", serif;
    color:#000000;
    margin-right:250px;
    margin-left:150px;
    padding:25px;
    font-size: 14px;
    line-height: 1.3421052631;
    margin-bottom: 51px;
    background:#e9eff3;
    border-color:#87a6bc;
    border-style:solid;
    border-width:2px;
    }

如果您想获取更多信息,请告诉我添加它。

1 个答案:

答案 0 :(得分:1)

除了<pre>之外,请使用<blockquote>来保留原始格式。

或者将white-space: pre;添加到blockquote p的样式中。