mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-20 12:53:02 +00:00
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
Language: Diff
|
||||
Description: Unified and context diff
|
||||
Author: Vasily Polovnyov <vast@whiteants.net>
|
||||
Website: https://www.gnu.org/software/diffutils/
|
||||
Category: common
|
||||
*/
|
||||
|
||||
export default function(hljs) {
|
||||
return {
|
||||
name: 'Diff',
|
||||
aliases: ['patch'],
|
||||
contains: [
|
||||
{
|
||||
className: 'meta',
|
||||
relevance: 10,
|
||||
variants: [
|
||||
{begin: /^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},
|
||||
{begin: /^\*\*\* +\d+,\d+ +\*\*\*\*$/},
|
||||
{begin: /^\-\-\- +\d+,\d+ +\-\-\-\-$/}
|
||||
]
|
||||
},
|
||||
{
|
||||
className: 'comment',
|
||||
variants: [
|
||||
{begin: /Index: /, end: /$/},
|
||||
{begin: /={3,}/, end: /$/},
|
||||
{begin: /^\-{3}/, end: /$/},
|
||||
{begin: /^\*{3} /, end: /$/},
|
||||
{begin: /^\+{3}/, end: /$/},
|
||||
{begin: /^\*{15}$/ }
|
||||
]
|
||||
},
|
||||
{
|
||||
className: 'addition',
|
||||
begin: '^\\+', end: '$'
|
||||
},
|
||||
{
|
||||
className: 'deletion',
|
||||
begin: '^\\-', end: '$'
|
||||
},
|
||||
{
|
||||
className: 'addition',
|
||||
begin: '^\\!', end: '$'
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user