From 01af2696ebee84cb90427aa56066ea88b05083ed Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 29 Jul 2021 21:42:06 -0400 Subject: [PATCH] doc: Fix code-block display for example shell commands the code-block was jumbled and not displaying properly. Reported by: Drew Bloechl Signed-off-by: Donald Sharp --- doc/user/bgp.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/user/bgp.rst b/doc/user/bgp.rst index 88f0483901..d06dce947e 100644 --- a/doc/user/bgp.rst +++ b/doc/user/bgp.rst @@ -3541,15 +3541,15 @@ structure is extended with :clicmd:`show bgp [afi] [safi]`. Here is an example of how to check what prefixes were installed starting with an arbitrary version:: - .. code-block:: frr +.. code-block:: shell - ~# vtysh -c 'show bgp ipv4 unicast json' | jq '.tableVersion' - 9 - ~# vtysh -c 'show ip bgp version 9 json' | jq -r '.routes | keys[]' - 192.168.3.0/24 - ~# vtysh -c 'show ip bgp version 8 json' | jq -r '.routes | keys[]' - 192.168.2.0/24 - 192.168.3.0/24 + # vtysh -c 'show bgp ipv4 unicast json' | jq '.tableVersion' + 9 + # vtysh -c 'show ip bgp version 9 json' | jq -r '.routes | keys[]' + 192.168.3.0/24 + # vtysh -c 'show ip bgp version 8 json' | jq -r '.routes | keys[]' + 192.168.2.0/24 + 192.168.3.0/24 .. clicmd:: show bgp [afi] [safi] statistics -- 2.39.5