mirror of
https://github.com/sharkdp/bat
synced 2024-11-23 12:23:19 +00:00
Add slim syntax test
This commit is contained in:
parent
9ef87dab27
commit
699f1e65cc
2 changed files with 40 additions and 0 deletions
20
tests/syntax-tests/highlighted/Slim/test.slim
vendored
Normal file
20
tests/syntax-tests/highlighted/Slim/test.slim
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
[38;2;249;38;114mdoctype[0m[38;2;248;248;242m html[0m
|
||||
[38;2;249;38;114mhtml[0m[38;2;248;248;242m [0m[38;2;166;226;46mlang[0m[38;2;166;226;46m=[0m[38;2;248;248;242mlocale[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mhead[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mmeta[0m[38;2;248;248;242m [0m[38;2;166;226;46mcharset[0m[38;2;166;226;46m=[0m[38;2;255;255;255m'[0m[38;2;230;219;116mutf-8[0m[38;2;255;255;255m'[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mtitle[0m[38;2;248;248;242m [0m[38;2;249;38;114m#{[0m[38;2;246;170;17m@[0m[38;2;255;255;255mtitle[0m[38;2;248;248;242m [0m[38;2;249;38;114m?[0m[38;2;248;248;242m [0m[38;2;249;38;114m"[0m[38;2;248;248;242m#{[0m[38;2;246;170;17m@[0m[38;2;255;255;255mtitle[0m[38;2;248;248;242m}[0m[38;2;230;219;116m | Testing[0m[38;2;249;38;114m"[0m[38;2;248;248;242m [0m[38;2;249;38;114m:[0m[38;2;248;248;242m [0m[38;2;249;38;114m'[0m[38;2;230;219;116mTesting[0m[38;2;249;38;114m'[0m[38;2;249;38;114m}[0m
|
||||
[38;2;248;248;242m [0m[38;2;248;248;242m==[0m[38;2;248;248;242m stylesheet[0m[38;2;255;255;255m([0m[38;2;249;38;114m'[0m[38;2;230;219;116mapp.css[0m[38;2;249;38;114m'[0m[38;2;255;255;255m)[0m
|
||||
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mbody[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mheader[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mh1[0m[38;2;166;226;46m.[0m[38;2;166;226;46mtitle[0m[38;2;248;248;242m Testing[0m
|
||||
|
||||
[38;2;248;248;242m [0m[38;2;248;248;242m-[0m[38;2;248;248;242m [0m[38;2;246;170;17m@[0m[38;2;255;255;255mlinks[0m[38;2;248;248;242m.[0m[38;2;248;248;242meach [0m[38;2;249;38;114mdo[0m[38;2;248;248;242m [0m[38;2;248;248;242m|[0m[3;38;2;253;151;31mlink[0m[38;2;248;248;242m|[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114ma[0m[38;2;248;248;242m [0m[38;2;166;226;46mhref[0m[38;2;166;226;46m=[0m[38;2;248;248;242mlink.href[0m
|
||||
[38;2;248;248;242m [0m[38;2;248;248;242m=[0m[38;2;248;248;242mlink[0m[38;2;248;248;242m.[0m[38;2;248;248;242mtitle[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mdiv[0m
|
||||
[38;2;248;248;242m [0m[38;2;248;248;242m==[0m[38;2;248;248;242m [0m[38;2;249;38;114myield[0m
|
||||
|
||||
[38;2;248;248;242m [0m[38;2;248;248;242m-[0m[38;2;248;248;242m [0m[38;2;249;38;114mif[0m[38;2;248;248;242m [0m[38;2;102;217;239mAPP_ENV[0m[38;2;248;248;242m [0m[38;2;249;38;114m==[0m[38;2;248;248;242m [0m[38;2;249;38;114m'[0m[38;2;230;219;116mproduction[0m[38;2;249;38;114m'[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mfooter[0m
|
||||
[38;2;248;248;242m [0m[38;2;249;38;114mp[0m[38;2;248;248;242m Testing[0m
|
20
tests/syntax-tests/source/Slim/test.slim
vendored
Normal file
20
tests/syntax-tests/source/Slim/test.slim
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
doctype html
|
||||
html lang=locale
|
||||
head
|
||||
meta charset='utf-8'
|
||||
title #{@title ? "#{@title} | Testing" : 'Testing'}
|
||||
== stylesheet('app.css')
|
||||
|
||||
body
|
||||
header
|
||||
h1.title Testing
|
||||
|
||||
- @links.each do |link|
|
||||
a href=link.href
|
||||
=link.title
|
||||
div
|
||||
== yield
|
||||
|
||||
- if APP_ENV == 'production'
|
||||
footer
|
||||
p Testing
|
Loading…
Reference in a new issue