style: Move list quotes out of mako

This commit is contained in:
Connor Brewster 2017-11-08 14:34:31 -06:00 committed by Emilio Cobos Álvarez
parent 714c1b2455
commit 16f627a18a
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 91 additions and 70 deletions

View file

@ -0,0 +1,18 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! `list` computed values.
pub use values::specified::list::Quotes;
impl Quotes {
/// Initial value for `quotes`
#[inline]
pub fn get_initial_value() -> Quotes {
Quotes(vec![
("\u{201c}".to_owned(), "\u{201d}".to_owned()),
("\u{2018}".to_owned(), "\u{2019}".to_owned()),
])
}
}