StubbleOrg / Stubble

Trimmed down {{mustache}} templates in .NET
Other
401 stars 58 forks source link

Culture code is not applied with CultureInfo in RenderSettings. #96

Closed iKuzmich closed 4 years ago

iKuzmich commented 4 years ago

I am going to specify Dutch date format in my Stubble template. To have dd/mm/yyyy format.

var stubble = new StubbleBuilder();
var renderSettings = new RenderSettings()
    {
        CultureInfo = new CultureInfo("nl-BE", false)
    };
var builtTemplate = stubble.Build();
var text = builtTemplate.Render(myTemplate, myRenderingObj, renderSettings);

But still having mm/dd/yyyy formatted dates.

Please advise.

iKuzmich commented 4 years ago

Was created by mistake. This works fine.

Romanx commented 4 years ago

Good to know you solved your problem 👍