From 813672558155c810cccf5ef61065690b8bc592e3 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sun, 7 Mar 2021 18:30:13 +0000 Subject: [PATCH] docs: hide outbound link icon from links with images --- README.md | 6 +----- docs/.vuepress/styles/index.styl | 3 +++ 2 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 docs/.vuepress/styles/index.styl diff --git a/README.md b/README.md index a930b92b4..2641e8b5d 100644 --- a/README.md +++ b/README.md @@ -8,18 +8,16 @@ Super fast JSON schema validator for Node.js and browser. Supports JSON Schema draft-06/07/2019-09 (draft-04 is supported in [version 6](https://github.com/ajv-validator/ajv/tree/v6)) and JSON Type Definition [RFC8927](https://datatracker.ietf.org/doc/rfc8927/). -::: v-pre [![build](https://github.com/ajv-validator/ajv/workflows/build/badge.svg)](https://github.com/ajv-validator/ajv/actions?query=workflow%3Abuild) [![npm](https://img.shields.io/npm/v/ajv.svg)](https://www.npmjs.com/package/ajv) [![npm downloads](https://img.shields.io/npm/dm/ajv.svg)](https://www.npmjs.com/package/ajv) [![Coverage Status](https://coveralls.io/repos/github/ajv-validator/ajv/badge.svg?branch=master)](https://coveralls.io/github/ajv-validator/ajv?branch=master) [![Gitter](https://img.shields.io/gitter/room/ajv-validator/ajv.svg)](https://gitter.im/ajv-validator/ajv) [![GitHub Sponsors](https://img.shields.io/badge/$-sponsors-brightgreen)](https://github.com/sponsors/epoberezkin) -::: ## Platinum sponsors -[](https://www.mozilla.org)[](https://opencollective.com/ajv) +[](https://www.mozilla.org)[](https://opencollective.com/ajv) ## Using version 7 @@ -136,9 +134,7 @@ Please also review [Contributing guidelines](./CONTRIBUTING.md) and [Code compon ## Mozilla MOSS grant and OpenJS Foundation -::: v-pre [](https://www.mozilla.org/en-US/moss/)[](https://openjsf.org/blog/2020/08/14/ajv-joins-openjs-foundation-as-an-incubation-project/) -::: Ajv has been awarded a grant from Mozilla’s [Open Source Support (MOSS) program](https://www.mozilla.org/en-US/moss/) in the “Foundational Technology” track! It will sponsor the development of Ajv support of [JSON Schema version 2019-09](https://tools.ietf.org/html/draft-handrews-json-schema-02) and of [JSON Type Definition (RFC8927)](https://datatracker.ietf.org/doc/rfc8927/). diff --git a/docs/.vuepress/styles/index.styl b/docs/.vuepress/styles/index.styl new file mode 100644 index 000000000..400dd75df --- /dev/null +++ b/docs/.vuepress/styles/index.styl @@ -0,0 +1,3 @@ +img + span > .icon.outbound { + display: none; +}