# perldoc > Exporter::Shiny

<think>The user wants me to transform a Perl module's perldoc Markdown into Open Knowledge Format (OKF). Let me analyze the input:

- It's perldoc for `Exporter::Shiny`
- It's a wrapper around `Exporter::Tiny`
- Has synopsis, description, bugs, see also, author, copyright, disclaimer

Let me create the OKF formatted output following all the rules:

1. YAML frontmatter with required fields
2. Start with ## Quick Reference
3. ## Name
4. ## Synopsis
5. ## Options (probably not applicable here)
6. ## Examples (if any)
7. ## See Also
8. ## Exit Codes (only if documented - not applicable here)

For perldoc mode, section is empty. Source is perldoc.

Let me draft this carefully, preserving all technical info but condensing where possible.</think>

---
type: CommandReference
command: Exporter::Shiny
mode: perldoc
section: ""
source: perldoc
---

## Quick Reference

- `use Exporter::Shiny qw( foo bar );` — shortcut for using `Exporter::Tiny` with `foo` and `bar` added to `@EXPORT_OK`
- `use Exporter::Shiny -setup => { exports => [qw( foo bar )] };` — `Sub::Exporter`-compatible longer syntax
- Equivalent to `use base "Exporter::Tiny"; push our(@EXPORT_OK), qw( foo bar );`

## Name

`Exporter::Shiny` — shortcut for `Exporter::Tiny`

## Synopsis

perl
use Exporter::Shiny qw( foo bar );
Is a shortcut for:

perl
use base "Exporter::Tiny";
push our(@EXPORT_OK), qw( foo bar );
For compatibility with `Sub::Exporter`, the following longer syntax is also supported:

perl
use Exporter::Shiny -setup => {
    exports => [qw( foo bar )],
};
## Description

A very small wrapper to simplify using `Exporter::Tiny`.

It does the following:

- Marks your package as loaded in `%INC`
- Pushes any function names in the import list onto your `@EXPORT_OK`
- Pushes `Exporter::Tiny` onto your `@ISA`

It does not set up `%EXPORT_TAGS` or `@EXPORT`, but there is nothing stopping you doing that yourself.

## Bugs

Please report any bugs to <http://rt.cpan.org/Dist/Display.html?Queue=Exporter-Tiny>.

## See Also

- [Exporter::Tiny](perldoc://Exporter::Tiny)
- [Exporter::Tiny::Manual::QuickStart](perldoc://Exporter::Tiny::Manual::QuickStart)
- [Exporter::Tiny::Manual::Exporting](perldoc://Exporter::Tiny::Manual::Exporting)
- [Sub::Exporter](perldoc://Sub::Exporter)
- `Exporter`

## Author

Toby Inkster <tobyink@cpan.org>.

## Copyright and Licence

This software is copyright (c) 2014, 2017 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

## Disclaimer of Warranties

THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.