You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is there a way to customize the output display of the routers? Preferably I would like to have the output as a full regular text displayed in-between current header & footer, instead of a scrollable window. also my custom vtysh at some cases outputs some html code that it doesn't get displayed in the output window.
The text was updated successfully, but these errors were encountered:
There is no way to output the result in a command outside the current div container. Though, the actual scrollable container is added here so it could be customized (e.g. with a configuration option) to not be included and just output the result as is.
I managed to get the full output in the div container by removing the class="pre-scrollable" code here. it may be nice to have this as an option. Is there a way to fully maximize the div container? and lastly, how about the html code from my custom vtysh wrapper that gets filtered in the div container output window?
I guess the HTML gets ignored because you are between <pre></pre> tags. You can try removing those to see if the HTML code gets interpreted. As for the size of the <div> container, you can probably use your own CSS code to make it look like what you want.
Greetings,
is there a way to customize the output display of the routers? Preferably I would like to have the output as a full regular text displayed in-between current header & footer, instead of a scrollable window. also my custom vtysh at some cases outputs some html code that it doesn't get displayed in the output window.
The text was updated successfully, but these errors were encountered: