[runtime/docs] Add custom lexer for shell sessions in runtime wiki.
This was missing from the previous wiki related commit. TBR=aam@google.com Change-Id: Ib68ead3bab2841bb8e02cb93fd71bce7515ff335 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134285 Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
||||
# for details. All rights reserved. Use of this source code is governed by a
|
||||
# BSD-style license that can be found in the LICENSE file.
|
||||
#
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='custom-shell-session',
|
||||
packages=find_packages(),
|
||||
entry_points="""
|
||||
[pygments.lexers]
|
||||
custom-shell-session = custom_shell_session.lexer:CustomShellSessionLexer
|
||||
""",
|
||||
)
|
||||
Reference in New Issue
Block a user