This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.6 | |
RUN apk add --no-cache --update gcc make automake autoconf libtool musl-dev zlib-dev git openssl nodejs nodejs-npm imagemagick | |
RUN git clone https://github.com/skyrpex/potrace.git && \ | |
cd potrace && \ | |
autoreconf -i && \ | |
./configure && make && make install | |
RUN npm install -g svgo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.9.1-alpine3.6 | |
RUN apk add --update git openssl nodejs nodejs-npm && rm /var/cache/apk/* | |
RUN go get -u github.com/fogleman/primitive | |
RUN npm install -g sqip | |
RUN mkdir /sqip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.poi.poi_expanded | |
.poi__label | |
.poi-label.poi-label_collapsed // collapsed if poi expanded | |
.poi-label__icon | |
.poi-label__text // hidden when "poi-label_collapsed == true" | |
.poi__popup // visible when "poi_expanded == true" | |
button.poi__popup-close(data-ng-click="poi.close()") | |
.poi__popup-content | |
// Whatever |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?><default-semantic xmlns:a="http://slcf/templates/settings/bem-scheme/additional" xmlns:b="http://slcf/templates/settings/bem-scheme/block" xmlns:d="http://slcf/templates/settings/bem-scheme/data" xmlns:e="http://slcf/templates/settings/bem-scheme/element" xmlns:p="http://slcf/templates/settings/bem-scheme/pointer" xmlns:m="http://slcf/templates/settings/bem-scheme/modification" xmlns:t="http://slcf/templates/settings/bem-scheme/template" xmlns:x="http://slcf/templates/settings/bem-scheme/xhtml" xmlns:un="http://slcf/templates/settings/bem-scheme/unknown-namespace" xmlns:alxc="http://slcf/templates/settings/bem-scheme/additional-legacy-xhtml-class"> | |
<!-- HTML document > --> | |
<b:xdocument tag="html" x:lang="ru" x:id="nojs" noclass="true"/> | |
<e:head block="xdocument" noclass="true" tag="head"/> | |
<e:title block="xdocument" noclass="true" tag="title"/> | |
<e:body block="xdocument" noclass="true" tag="body"/> | |
<b:xlink tag="link" noclass="true"/> | |
<m:style block="xlink" x:rel= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?><default-semantic xmlns:a="http://slcf/templates/settings/bem-scheme/additional" xmlns:b="http://slcf/templates/settings/bem-scheme/block" xmlns:d="http://slcf/templates/settings/bem-scheme/data" xmlns:e="http://slcf/templates/settings/bem-scheme/element" xmlns:p="http://slcf/templates/settings/bem-scheme/pointer" xmlns:m="http://slcf/templates/settings/bem-scheme/modification" xmlns:t="http://slcf/templates/settings/bem-scheme/template" xmlns:x="http://slcf/templates/settings/bem-scheme/xhtml" xmlns:un="http://slcf/templates/settings/bem-scheme/unknown-namespace" xmlns:alxc="http://slcf/templates/settings/bem-scheme/additional-legacy-xhtml-class"> | |
<!-- html document > --> | |
<b:xdocument | |
tag="html" | |
x:lang="ru" | |
x:id="nojs" | |
noclass="true" | |
/> | |
<e:head |