Browse Source

fix: getPagePath would include a trailing (#1323) (#1324)

This excludes the trailing slash from the locale code.
pull/1328/head
alancnet 4 years ago
committed by Nicolas Giard
parent
commit
a457e82b16
1 changed files with 1 additions and 1 deletions
  1. 2
      server/helpers/page.js

2
server/helpers/page.js

@ -4,7 +4,7 @@ const crypto = require('crypto')
const path = require('path') const path = require('path')
const localeSegmentRegex = /^[A-Z]{2}(-[A-Z]{2})?$/i const localeSegmentRegex = /^[A-Z]{2}(-[A-Z]{2})?$/i
const localeFolderRegex = /^([a-z]{2}(?:-[a-z]{2})?\/)?(.*)/i
const localeFolderRegex = /^([a-z]{2}(?:-[a-z]{2})?)\/?(.*)/i
const contentToExt = { const contentToExt = {
markdown: 'md', markdown: 'md',

Loading…
Cancel
Save