default_substitution.go 461 B

12345678910111213141516
  1. // Copyright 2013 by Dobrosław Żybort. All rights reserved.
  2. // This Source Code Form is subject to the terms of the Mozilla Public
  3. // License, v. 2.0. If a copy of the MPL was not distributed with this
  4. // file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. package slug
  6. var defaultSub = map[rune]string{
  7. '"': "",
  8. '\'': "",
  9. '’': "",
  10. '‒': "-", // figure dash
  11. '–': "-", // en dash
  12. '—': "-", // em dash
  13. '―': "-", // horizontal bar
  14. }