+[2013-12-03T15:29:56Z]jaybei'm referring more to 'public' submissions/comments, avoiding spam/slam, ... requiring proof/origin-by-email, etc. +[2013-12-03T15:30:32Z]kaffeebohneYou can do all that before you let the comment through. +[2013-12-03T15:30:39Z]kaffeebohneBut it's not built in. +[2013-12-03T15:34:37Z]kaffeebohnejaybe: Maybe you should join #annotator, they can help better than me. +[2013-12-03T15:47:26Z]SirFunkI'm writing a plugin that provides a liquid tag. I need to load some data from a YAML file. In my PageGenerator plugins it gets sent a site variable that you can get the path from.. how do you get the path in a LiquidTag?
+[2013-12-04T00:09:42Z]TheTrashTrying to set my own global variable, so I put meh: test in _config.yml, but adding {{ meh }} to my page strips it and doesn't display the text... am I misunderstanding? +[2013-12-04T04:49:08Z]bretTheTrash you need to do {{ site.meh }} +[2013-12-04T04:49:58Z]bretand make sure you stop jekyll serve --watch if thats what you are using. changing _configure requires starting that process over again +[2013-12-04T05:46:25Z]jaybeTheTrash, refer to the docs about the new Data variables available site-wide, without a restart. +[2013-12-04T05:46:50Z]jaybeTheTrash, http://jekyllrb.com/docs/datafiles/