Search code examples
githubgithub-flavored-markdownreadme

GitHub ReadMe: How to include CLI Text Logos


How can I include the SPRINGBOOT CLI Image in my readME file using github markdown?

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.1.8.RELEASE) 

Solution

  • Either wrap it in <pre> tags or use Markdown's triple-backtick code blocking, like:

    ```
          .   ____          _            __ _ _
         /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
        ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
         \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
          '  |____| .__|_| |_|_| |_\__, | / / / /
         =========|_|==============|___/=/_/_/_/
         :: Spring Boot ::        (v1.1.8.RELEASE) 
    ```
    

    https://help.github.com/articles/creating-and-highlighting-code-blocks/