1#!/usr/bin/env python
2
3"""
4Implementation of the nameref package
5
6"""
7
8from plasTeX import Command
9
10class nameref(Command):
11    args = 'label:idref'
12
13class Nameref(Command):
14    args = 'label:idref'