wwjdm
wwjdm

Reputation: 2596

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) 

Upvotes: 1

Views: 307

Answers (2)

Indent
Indent

Reputation: 4967

Try <pre> tag HTML :

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

Upvotes: 1

msanford
msanford

Reputation: 12227

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/

Upvotes: 3

Related Questions