1# Copyright: 2020 Masatake YAMATO 2# License: GPL-2 3 4CTAGS=$1 5O="--quiet --options=NONE " 6 7${CTAGS} $O \ 8 --extras=p --pseudo-tags=TAG_EXTRA_DESCRIPTION \ 9 --extras=+g \ 10 --extras-Robot='{whitespaceSwapped}' \ 11 -o - \ 12 input.robot 13 14${CTAGS} $O \ 15 --extras=p --pseudo-tags=TAG_EXTRA_DESCRIPTION \ 16 --extras-Robot=-'{whitespaceSwapped}' \ 17 -o - \ 18 input.robot 19