(from: https://github.com/Shopify/liquid/wiki/liquid-for-designers)
There are two types of markup in Liquid: Output and Tag.
- Output markup (which may resolve to text) is surrounded by
#!/usr/bin/env python3 | |
import datetime | |
import logging | |
import requests | |
# Well-known keyword arguments used by the logging system. | |
_well_known_logger_kwargs = [ | |
"extra", | |
"exc_info", |
{% assign m = page.date | date: "%-m" %} | |
{% capture month_name_pt %} | |
{% case m %} | |
{% when '1' %}Janeiro | |
{% when '2' %}Fevereiro | |
{% when '3' %}Março | |
{% when '4' %}Abril | |
{% when '5' %}Maio | |
{% when '6' %}Junho | |
{% when '7' %}Julho |
(from: https://github.com/Shopify/liquid/wiki/liquid-for-designers)
There are two types of markup in Liquid: Output and Tag.
using System; | |
using System.Collections.Generic; | |
using System.Net.Sockets; | |
using System.Net; | |
using System.IO; | |
using System.Threading; | |
using System.Windows.Forms; | |
using Westwind.Utilities; | |
namespace Westwind.WebConnection |
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading; | |
namespace Caio.Proiete.Utils | |
{ | |
public class SilentProcessRunner : IDisposable | |
{ |
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<appSettings> | |
<add key="custom1:serilog:minimum-level" value="Warning" /> | |
<add key="custom2:serilog:minimum-level" value="Error" /> | |
</appSettings> | |
</configuration> |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<meta-runner name="Meta (CaioProiete): Initialize build and set custom parameters"> | |
<description>Initialize the build and set the value of some custom parameters that can be used during the build, such as version, timestamp, and others</description> | |
<settings> | |
<parameters> | |
<param name="mr.initialize_build.releaseBranch" value="%build.releaseBranch%" spec="text label='Release Branch:' description='The name of the branch from where production releases are generated' display='normal' validationMode='not_empty'" /> | |
<param name="mr.initialize_build.verbose" value="SilentlyContinue" spec="checkbox checkedValue='Continue' description='Log verbose messages?' display='normal' label='Verbose:' uncheckedValue='SilentlyContinue'" /> | |
</parameters> | |
<build-runners> | |
<runner name="Initialize build and set custom parameters" type="jetbrains_powershell"> |
DEVELOPER EXPRESS INC | |
DEVEXPRESS .NET Controls and Frameworks | |
Copyright (C) 2000-2014 Developer Express Inc. | |
END-USER LICENSE AGREEMENT | |
FOR ALL SOFTWARE DEVELOPMENT PRODUCT(S) INCLUDED IN THIS DISTRIBUTION | |
IMPORTANT- READ CAREFULLY: This DEVELOPER EXPRESS INC ("DEVEXPRESS") End-User License Agreement ("EULA") is a legal agreement between you, a developer of software applications, ("Developer End User") and DEVEXPRESS for all DEVEXPRESS products, frameworks, components, source code, demos, intermediate files, media, printed materials, and "online" or electronic documentation ("SOFTWARE DEVELOPMENT PRODUCT(S)") contained in this distribution. | |
By installing, copying, or otherwise using the SOFTWARE DEVELOPMENT PRODUCT(S), you agree to be bound by the terms of this EULA. If you do not agree to any part of the terms of this EULA, DO NOT INSTALL, COPY, USE, EVALUATE, OR REPLICATE IN ANY MANNER, ANY PART, FILE OR PORTION OF THE SOFTWARE DEVELOPMENT PRODUCT(S). |