Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8358025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:40:12+00:00 2026-06-09T10:40:12+00:00

In Doxygen, to get the copyright symbol in HTML output, the documentation must use

  • 0

In Doxygen, to get the copyright symbol in HTML output, the documentation must use ©, as in:

/// @copyright Copyright © 2012

In this case, I’d prefer to type it like this:

/// @copyright Copyright (c) 2012

In the latter example, it looks a little nicer and would probably translate over to plain text & RTF output better as well. Is it possible to create a text to entity mapping in Doxygen? For example, (c) would map to ©, and doxygen would simply replace all (c) occurrences with ©

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T10:40:13+00:00Added an answer on June 9, 2026 at 10:40 am

    In general I think such substitutions are better handled by an input filter.
    Here is a simple filter that would replace a (c) followed by some digits by © and then the same digits:

    #!/bin/perl
    open(F,"<$ARGV[0]") || die("Failed to open file $ARGV[0]: $!");
    while (<F>)
    {
      s/\([cC]\)(\s*\d+)/&copy;\1/g;
      print $_;
    }
    close(F);
    

    To use this filter put the following in the config file:

    INPUT_FILTER = "perl filter.pl"
    

    Note 1 The filter will process the whole file. It might be a useful feature to allow a filter that is only applied to comments.

    Note 2 If you use a UTF-8 capable editor and corresponding encoding (INPUT_ENCODING) you can also insert the copyright character directly (code C2 A9 hex)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I generate Doxygen documentation in PDF format, I get plenty of different files
When I generate documentation using Doxygen I get several empty packages representing system namespaces
Doxygen noob here. I've searched and tried to resolve this for several hours now
Which is the correct doxygen format for PHP comments? #1 /** Create HTML for
I'm using Doxygen to generate documentation for my code. I need to make a
I use Doxygen to generate docs for my objective c code. Up to now
I want to document a library with doxygen. The documentation will be read by
I just started to use doxygen and may not be familiar with all available
I've seen in quickfix doxygen documentation that it generates an utc timestamp as soon
I am trying to generate documentation of the Octave API using doxygen. However, doxygen

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.