Skip to content

Commit 893f630

Browse files
committed
Merge branch 'master' of https://github.com/jacobwilliams/json-fortran into 505-version-2
2 parents a288b80 + d3275f8 commit 893f630

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ JSON-Fortran: A Modern Fortran JSON API
2121
Status
2222
------
2323
[![Build Status](https://github.com/jacobwilliams/json-fortran/actions/workflows/CI.yml/badge.svg)](https://github.com/jacobwilliams/json-fortran/actions)
24-
[![GitHub issues](https://img.shields.io/github/issues/jacobwilliams/json-fortran.png?style=plastic)](https://github.com/jacobwilliams/json-fortran/issues)
24+
[![GitHub issues](https://img.shields.io/github/issues/jacobwilliams/json-fortran.png)](https://github.com/jacobwilliams/json-fortran/issues)
2525
[![Codecov](https://codecov.io/gh/jacobwilliams/json-fortran/branch/master/graph/badge.svg)](https://codecov.io/gh/jacobwilliams/json-fortran)
26+
[![last-commit](https://img.shields.io/github/last-commit/jacobwilliams/json-fortran)](https://github.com/jacobwilliams/json-fortran/commits/master)
27+
2628

2729
Take a look at the
2830
[CHANGELOG](https://github.com/jacobwilliams/json-fortran/blob/master/CHANGELOG.md#unreleased)
@@ -40,9 +42,9 @@ JSON-Fortran is a user-friendly, thread-safe, and object-oriented API for readin
4042
Download
4143
--------------------
4244

43-
[![GitHub release](https://img.shields.io/github/release/jacobwilliams/json-fortran.svg?style=plastic)](https://github.com/jacobwilliams/json-fortran/releases)
44-
[![homebrew version](https://img.shields.io/homebrew/v/json-fortran.svg?style=plastic)](https://formulae.brew.sh/formula/json-fortran)
45-
[![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/json-fortran?style=plastic)](https://github.com/conda-forge/json-fortran-feedstock)
45+
[![GitHub release](https://img.shields.io/github/release/jacobwilliams/json-fortran.svg)](https://github.com/jacobwilliams/json-fortran/releases)
46+
[![homebrew version](https://img.shields.io/homebrew/v/json-fortran.svg)](https://formulae.brew.sh/formula/json-fortran)
47+
[![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/json-fortran)](https://github.com/conda-forge/json-fortran-feedstock)
4648

4749
Download the official versioned releases
4850
[here](https://github.com/jacobwilliams/json-fortran/releases/latest).

src/json_parameters.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ module json_parameters
5757
character(kind=CK,len=*),parameter :: dot = CK_'.' !! path separator for [[json_get_by_path_default]]
5858
character(kind=CK,len=*),parameter :: tilde = CK_'~' !! RFC 6901 escape character
5959
character(kind=CK,len=*),parameter :: single_quote = CK_"'" !! for JSONPath bracket-notation
60-
character(kind=CK,len=*),parameter :: slash = CK_'/' !! JSON special character
61-
character(kind=CK,len=*),parameter :: backslash = CK_'\' !! JSON special character
6260
character(kind=CK,len=*),parameter :: quotation_mark = CK_'"' !! JSON special character
6361
character(kind=CK,len=*),parameter :: bspace = achar(8, kind=CK) !! JSON special character
6462
character(kind=CK,len=*),parameter :: horizontal_tab = achar(9, kind=CK) !! JSON special character
6563
character(kind=CK,len=*),parameter :: newline = achar(10, kind=CK) !! JSON special character
6664
character(kind=CK,len=*),parameter :: formfeed = achar(12, kind=CK) !! JSON special character
6765
character(kind=CK,len=*),parameter :: carriage_return = achar(13, kind=CK) !! JSON special character
66+
character(kind=CK,len=*),parameter :: slash = achar(47, kind=CK) !! JSON special character
67+
character(kind=CK,len=*),parameter :: backslash = achar(92, kind=CK) !! JSON special character
6868

6969
!> default real number format statement (for writing real values to strings and files).
7070
! Note that this can be overridden by calling [[json_initialize]].

0 commit comments

Comments
 (0)