mustache_recase 1.0.0 copy "mustache_recase: ^1.0.0" to clipboard
mustache_recase: ^1.0.0 copied to clipboard

outdatedDart 1 only

A mustache extension for handling case conversions

mustache_recase #

A library for extending the functionality of mustache package with recase

Usage #

import 'package:mustache/mustache.dart';
import 'package:mustache_recase/mustache_recase.dart' as mustache_recase;

void main(){
  Template template = new Template("{{#title_case}} {{hello}} {{/title_case}}");
  Map variables = {"hello": "hello-world"};
  variables.addAll(mustache_recase.cases);
  String output = template.renderString(variables);
  print(output); // Hello World
}

See (or interact with) the example and/or the test of the package if you have doubts

List of usable cases #

  • snake_case
  • dot.case
  • path/case
  • param-case
  • PascalCase
  • Header-Case
  • Title Case
  • camelCase
  • Sentence case
  • CONSTANT_CASE

misc

This package was made with Generator+ package in an effort to have it tested and, at the same time, extended in it's mustache templates related features. I'm glad it worked as expected 😃

1
likes
0
pub points
23%
popularity

Publisher

unverified uploader

A mustache extension for handling case conversions

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

mustache, recase

More

Packages that depend on mustache_recase