Skip to content

Instantly share code, notes, and snippets.

@balupton
Last active October 13, 2015 08:18
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save balupton/4166882 to your computer and use it in GitHub Desktop.
Save balupton/4166882 to your computer and use it in GitHub Desktop.
DocPad: Localising Dates
# Requires
moment = require('moment').lang('fr') # set locale to french
# Define Configuration
docpadConfig =
templateData:
# Format the passed date, by default format like: Thursday, November 29 2012 3:53 PM
formatDate: (date,format='LLLL') -> return moment(date).format(format)
# Export Configuration
module.exports = docpadConfig
This document was last modified at: <%= @formatDate(@document.date) %>
@ericloubignac
Copy link

moment = require('moment').lang('fr')

doesn't seem to work but :

moment = require('moment')
moment.lang('fr')

works perfectly: http://momentjs.com/docs/#/i18n/loading-into-nodejs/

@ericloubignac
Copy link

moment = require('moment').lang('fr')

doesn't seem to work but :

moment = require('moment')
moment.lang('fr')

works perfectly

@dcardosods
Copy link

To works fine is necessary the follow update in docpad.coffe

# Requires
moment = require('moment')
moment.lang('fr')  # set locale to french

@mikeumus
Copy link

I'm getting this when I try it:

error: An error occured:
TypeError: undefined is not a function
    at Object.docpadConfig.templateData.formatDate

on DocPad@6.30.3

@fizzvr
Copy link

fizzvr commented Apr 13, 2013

in JS

var docpadConfig,moment;
moment = require('moment');
moment.lang('es');

docpadConfig = {
  templateData: {
formatDate: function(date, format) {
  if (format == null) {
format = 'LLLL';
  }
  return moment(date).format(format);
}
  }
};
module.exports = docpadConfig;

@zenorocha
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment