Job Description
for intro paragraphs and general text,
for section headers like Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role. Use - for list items. No CSS classes, no inline styles, no s, no
. Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. If text has no clear sections, just wrap paragraphs in . Return ONLY the HTML. No markdown fences, no explanation.
We have the raw text already includes some
tags and etc. But we must output HTML with for section headers. The original includes headings like "Knowledge, Skills and Experience" (bold). That likely should be a header? The instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). So we need to map headings to . The raw text includes:
- Knowledge, Skills and Experience (that's a header)
- Then
Qualifications and Experience:
(that's a subheader maybe)
- Then list items.
- Then Preferred Qualifications:
- Then list items.
- Then Key Competencies:
- Then list items.
- Then a paragraph "Ability to work both independently and collaboratively in a fast-paced environment."
- Then Key Responsibilities
- Then subheadings "Technical Assistance:", "Monitoring & Evaluation:", "Concessionary Funding Coordination:", "Partnership & Stakeholder Engagement:" each followed by list items.
We need to output HTML with for each section header. Which ones are considered section headers? The examples include Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role. In this job description, we have "Key Responsibilities" and "Key Competencies" maybe considered "Skills"? Also "Qualifications and Experience" and "Preferred Qualifications" and "Key Competencies". Also maybe "Ability to work both independently..." is just a paragraph.
We need to preserve all original content word-for-word. That includes the tags? The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. But we are to format as clean semantic HTML using and
and - . We cannot keep tags? The instruction says use
for section headers. So we should replace with . But we must preserve the content word-for-word. The content inside is "Knowledge, Skills and Experience". That is the header text. So we should output Knowledge, Skills and Experience
. That preserves the text.
Similarly, we have Key Responsibilities should become Key Responsibilities
.
We must not add any extra text. We must not remove any content. We must keep all list items exactly as they appear, including bullet points and any special characters like ? The original includes in some places. We need to preserve them exactly. However, the instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. So we must keep the as is. But we are to output HTML; we can keep the inside the text. That's fine.
We must not use inline styles. The original has style="margin-left:0cm" on some . We should not keep that style attribute because we cannot use inline styles. So we should drop the style attribute but keep the paragraph content. The content includes the text "Qualifications and Experience:" preceded by that style attribute. The style attribute is not allowed. So we should output
Qualifications and Experience:
(without style). That's okay because we are preserving the content word-for-word? The style attribute is not part of the content; it's formatting. The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. The style attribute is not content; it's formatting. Removing it is okay because it's not content. But we must not alter the text inside. So we can output Qualifications and Experience:
.
Similarly for other sections.
We must not use
. So we will only use ,
, , - .
We must not use
. So we will not add any.
We must not use CSS classes or inline styles.
We must preserve all original content word-for-word. That includes the bullet points with and & etc. So we must keep them exactly.
Now let's construct the HTML.
First, we have an initial
at the top. That's a paragraph containing a non-breaking space. We need to preserve it. So we output
.
Then Knowledge, Skills and Experience becomes Knowledge, Skills and Experience
.
Then Qualifications and Experience:
becomes Qualifications and Experience:
.
Then a with list items. We need to output then each - item exactly as in original, including the after "related field ". The original bullet items have after some words. We must keep them. So we output each
- exactly as appears, but without the style attribute. The original list items are:
- Bachelor’s degree in business, finance, economics, international development, or a related field
- 3-5 years of experience in programme management, SME development, Sustainability or a related area.
- Strong knowledge of environmental and social issues, entrepreneurship ecosystems, business development, and investment processes.
- Understanding of Bank of Ghana Sustainable Banking Principles and other International Sustainability standards and frameworks
- Experience working with SMEs, entrepreneurs, or start-ups in emerging markets.
- Proficiency in financial analysis, business modelling, and investment readiness assessments.
- Strong project management skills, with the ability to manage multiple priorities and deadlines.
- Excellent written and verbal communication skills.
We need to preserve the after "related field". That is part of the content. So we keep it.
Then Preferred Qualifications:
becomes Preferred Qualifications:
.
Then another with items:
- Familiarity with monitoring and evaluation (M&M) frameworks and tools.
- Experience working with donor-funded programme or Development Finance Institutions (DFIs).
- Experience in applying for concessionary funding or grants.
Note: The original has "M&E" but in the given text it's "M&E"? Actually it's "M&E"? The snippet shows "M&E"? Let's check: The original says "M&E"? It says "M&E"? Actually the snippet shows "M&E"? It says "M&E"? The given text: "M&E"? It says "M&E"? Let's read: "Familiarity with monitoring and evaluation (M&E) frameworks and tools." Yes, it's "M&E". So we need to keep that exactly: "M&E". Also note the ampersand is escaped as & in HTML. The original includes & which is the HTML entity. We must preserve it exactly. So we output "M&E". Good.
Then Key Competencies:
becomes Key Competencies:
.
Then list items:
- Strong analytical and problem-solving skills.
- Ability to communicate complex concepts in a clear, concise manner.
- Effective stakeholder management and relationship-building abilities.
- Attention to detail and a high level of accountability.
Then a paragraph: "Ability to work both independently and collaboratively in a fast-paced environment." That's a paragraph. So output
Ability to work both independently and collaboratively in a fast-paced environment.
.
Then Key Responsibilities becomes Key Responsibilities
.
Then "Technical Assistance:" is a subheading? It is not wrapped in but appears as plain text "Technical Assistance:" followed by . The original has:
Technical Assistance:
- Deliver or coordinate technical assistance services, including capacity-building workshops, business mentoring, and access to market events
...
So we need to output Technical Assistance
? The instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not exactly one of those, but it's a subheader under Key Responsibilities. However we can treat it as a header? The instruction says use for section headers (e.g. ...). It doesn't restrict to only those examples; we can use for any section header. So we can output Technical Assistance
before the list. But we must preserve the original content word-for-word. The original content is "Technical Assistance:" (including colon). So we need to output Technical Assistance:
? The colon is part of the text. Should we include colon? The original has "Technical Assistance:" with colon. So we should output Technical Assistance:
. That preserves the colon.
But the instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not exactly one of those, but it's a subheader. It might be okay to use for it. The instruction doesn't forbid using for other headings. So we can.
Similarly "Monitoring & Evaluation:" and "Concessionary Funding Coordination:" and "Partnership & Stakeholder Engagement:" are subheaders. We'll output Monitoring & Evaluation:
etc.
But we must preserve the colon. So we output Monitoring & Evaluation:
etc.
Now after the "Key Responsibilities" section, there are blank paragraphs:
repeated three times. We need to preserve them. So we output
three times.
Now we need to ensure we don't add any extra content.
Now let's construct the full HTML.
We'll start with
.
Then Knowledge, Skills and Experience
.
Then Qualifications and Experience:
.
Then with list items.
Then Preferred Qualifications:
.
Then with items.
Then Key Competencies:
.
Then with items.
Then Ability to work both independently and collaboratively in a fast-paced environment.
.
Then Key Responsibilities
.
Then Technical Assistance:
? Actually the original has Technical Assistance:
then . So we need to output Technical Assistance:
then ... But the instruction says use for section headers. "Technical Assistance" is a header but not a top-level section? It is a subheader under Key Responsibilities. The original uses
Technical Assistance:
to introduce the list. Should we output Technical Assistance:
or just Technical Assistance:
? The instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not one of those, but it's a header for a list of duties. It could be considered a section header. The instruction says use for section headers. So we should use Technical Assistance:
. However, we must preserve the colon. So Technical Assistance:
.
But the original also has a
before the list:
Technical Assistance:
. That is just a paragraph containing the header text. We could replace it with Technical Assistance:
. That would preserve the text but change the tag. The instruction says use for section headers. So it's okay to replace
with
for that header. However, we must preserve the content word-for-word. The content is "Technical Assistance:". So Technical Assistance:
includes the same content. So it's fine.
Similarly for "Monitoring & Evaluation:" and "Concessionary Funding Coordination:" and "Partnership & Stakeholder Engagement:".
But note that the original has
Technical Assistance:
then ... So we need to output Technical Assistance:
then ... The contains list items.
Now after the list items for Technical Assistance, there is no closing tag? The original has
then Monitoring & Evaluation:
etc. So we will output the list items, then close
, then next header.
Now after the "Key Responsibilities" section, there are three blank
paragraphs. We need to output them as is.
Now let's write the HTML step by step.
I'll draft:
Knowledge, Skills and Experience
Qualifications and Experience:
- Bachelor’s degree in business, finance, economics, international development, or a related field
- 3-5 years of experience in programme management, SME development, Sustainability or a related area.
- Strong knowledge of environmental and social issues, entrepreneurship ecosystems, business development, and investment processes.
- Understanding of Bank of Ghana Sustainable Banking Principles and other International Sustainability standards and frameworks
- Experience working with SMEs, entrepreneurs, or start-ups in emerging markets.
- Proficiency in financial analysis, business modelling, and investment readiness assessments.
- Strong project management skills, with the ability to manage multiple priorities and deadlines.
- Excellent written and verbal communication skills.
Preferred Qualifications:
- Familiarity with monitoring and evaluation (M&E) frameworks and tools.
- Experience working with donor-funded programme or Development Finance Institutions (DFIs).
- Experience in applying for concessionary funding or grants.
Key Competencies:
- Strong analytical and problem-solving skills.
- Ability to communicate complex concepts in a clear, concise manner.
- Effective stakeholder management and relationship-building abilities.
- Attention to detail and a high level of accountability.
Ability to work both independently and collaboratively in a fast-paced environment.
Key Responsibilities
Technical Assistance:
- Deliver or coordinate technical assistance services, including capacity-building workshops, business mentoring, and access to market events
- Collaborate with subject-matter experts to address specific needs in areas such as marketing, operations, legal compliance, and financial management that has a bearing on sustainable finance programme and products.
- Provide ongoing support to entrepreneurs in refining their business strategies and overcoming operational challenges.
- Develop and share best practices, tools, and resources to support the growth and sustainability of participating businesses.
Monitoring & Evaluation:
- Track the progress of entrepreneurs and SMEs in the programme, ensuring they meet key milestones for investment readiness.
- Coordinate post investment monitoring visits and maintain up-to-date records of business development progress.
- Collect and analyze data on programme performance, outcomes, and impact, providing regular updates to programme managers and impact reporting officer
- Support the development of reports and presentations for funders, highlighting key achievements and lessons learned.
Concessionary Funding Coordination:
- Coordinate the identification and evaluation of concessionary funding opportunities to support sustainable finance programme.
- Coordinate the process of accessing and applying for concessionary funds from relevant donors or financial institutions.
Partnership & Stakeholder Engagement:
- Build relationships with financial institutions, investors, development partners, and other key stakeholders to create a strong support network for entrepreneurs.
- Liaise with mentors, technical experts, and external consultants to ensure high-quality service delivery.
- Represent the programme at events, conferences, and meetings as required to promote the initiative and engage potential partners.
Now check for any extra content: The original had Qualifications and Experience:
etc. We removed the style. That's okay.
We also have Ability to work both independently and collaboratively in a fast-paced environment.
which is fine.
Now ensure we didn't miss any list items or headings.
The original also had
after the
. Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. If text has no clear sections, just wrap paragraphs in
. Return ONLY the HTML. No markdown fences, no explanation. We have the raw text already includes some
tags and etc. But we must output HTML with Qualifications and Experience: Preferred Qualifications: Key Competencies: and . We should not keep that style attribute because we cannot use inline styles. So we should drop the style attribute but keep the paragraph content. The content includes the text "Qualifications and Experience:" preceded by that style attribute. The style attribute is not allowed. So we should output Qualifications and Experience: Qualifications and Experience: sections.
We must not use , Qualifications and Experience: Qualifications and Experience: Preferred Qualifications: Preferred Qualifications: Key Competencies: Key Competencies: paragraph. So output Ability to work both independently and collaboratively in a fast-paced environment. Technical Assistance: Qualifications and Experience: Preferred Qualifications: Key Competencies: Ability to work both independently and collaboratively in a fast-paced environment. Technical Assistance: Technical Assistance: Technical Assistance: Technical Assistance: Technical Assistance: before the list: Technical Assistance: with Technical Assistance: Monitoring & Evaluation: Qualifications and Experience: Preferred Qualifications: Key Competencies: Ability to work both independently and collaboratively in a fast-paced environment. Qualifications and Experience: Ability to work both independently and collaboratively in a fast-paced environment. for section headers. The original includes headings like "Knowledge, Skills and Experience" (bold). That likely should be a header? The instruction says use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). So we need to map headings to
. The raw text includes:
- Knowledge, Skills and Experience (that's a header)
- Then
for each section header. Which ones are considered section headers? The examples include Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role. In this job description, we have "Key Responsibilities" and "Key Competencies" maybe considered "Skills"? Also "Qualifications and Experience" and "Preferred Qualifications" and "Key Competencies". Also maybe "Ability to work both independently..." is just a paragraph.
We need to preserve all original content word-for-word. That includes the tags? The instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. But we are to format as clean semantic HTML using
and
for section headers. So we should replace with
. But we must preserve the content word-for-word. The content inside is "Knowledge, Skills and Experience". That is the header text. So we should output
Knowledge, Skills and Experience
. That preserves the text.
Similarly, we have Key Responsibilities should become Key Responsibilities
.
We must not add any extra text. We must not remove any content. We must keep all list items exactly as they appear, including bullet points and any special characters like ? The original includes in some places. We need to preserve them exactly. However, the instruction says preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase. So we must keep the as is. But we are to output HTML; we can keep the inside the text. That's fine.
We must not use inline styles. The original has style="margin-left:0cm" on some ,
,
. So we will not add any.
We must not use CSS classes or inline styles.
We must preserve all original content word-for-word. That includes the bullet points with and & etc. So we must keep them exactly.
Now let's construct the HTML.
First, we have an initial Knowledge, Skills and Experience
.
Then with list items. We need to output
Then a paragraph: "Ability to work both independently and collaboratively in a fast-paced environment." That's a then each
We need to preserve the after "related field". That is part of the content. So we keep it.
Then with items:
Note: The original has "M&E" but in the given text it's "M&E"? Actually it's "M&E"? The snippet shows "M&E"? Let's check: The original says "M&E"? It says "M&E"? Actually the snippet shows "M&E"? It says "M&E"? The given text: "M&E"? It says "M&E"? Let's read: "Familiarity with monitoring and evaluation (M&E) frameworks and tools." Yes, it's "M&E". So we need to keep that exactly: "M&E". Also note the ampersand is escaped as & in HTML. The original includes & which is the HTML entity. We must preserve it exactly. So we output "M&E". Good.
Then Key Responsibilities
.
Then "Technical Assistance:" is a subheading? It is not wrapped in but appears as plain text "Technical Assistance:" followed by . The original has:
So we need to output Technical Assistance
? The instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not exactly one of those, but it's a subheader under Key Responsibilities. However we can treat it as a header? The instruction says use
for section headers (e.g. ...). It doesn't restrict to only those examples; we can use
for any section header. So we can output
Technical Assistance
before the list. But we must preserve the original content word-for-word. The original content is "Technical Assistance:" (including colon). So we need to output Technical Assistance:
? The colon is part of the text. Should we include colon? The original has "Technical Assistance:" with colon. So we should output Technical Assistance:
. That preserves the colon.
But the instruction says use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not exactly one of those, but it's a subheader. It might be okay to use
for it. The instruction doesn't forbid using
for other headings. So we can.
Similarly "Monitoring & Evaluation:" and "Concessionary Funding Coordination:" and "Partnership & Stakeholder Engagement:" are subheaders. We'll output
Monitoring & Evaluation:
etc.
But we must preserve the colon. So we output Monitoring & Evaluation:
etc.
Now after the "Key Responsibilities" section, there are blank paragraphs: Knowledge, Skills and Experience
.
Then with list items.
Then
with items.
Then
with items.
Then
Key Responsibilities
.
Then . So we need to output
... But the instruction says use
for section headers. "Technical Assistance" is a header but not a top-level section? It is a subheader under Key Responsibilities. The original uses
Technical Assistance:
or just for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role). "Technical Assistance" is not one of those, but it's a header for a list of duties. It could be considered a section header. The instruction says use
for section headers. So we should use
Technical Assistance:
. However, we must preserve the colon. So Technical Assistance:
.
But the original also has a Technical Assistance:
. That would preserve the text but change the tag. The instruction says use for section headers. So it's okay to replace
for that header. However, we must preserve the content word-for-word. The content is "Technical Assistance:". So
Technical Assistance:
includes the same content. So it's fine.
Similarly for "Monitoring & Evaluation:" and "Concessionary Funding Coordination:" and "Partnership & Stakeholder Engagement:".
But note that the original has ... So we need to output
Technical Assistance:
then ... The
, then next header.
Now after the "Key Responsibilities" section, there are three blank contains list items.
Now after the list items for Technical Assistance, there is no closing tag? The original has
then Knowledge, Skills and Experience
Key Responsibilities
Technical Assistance:
Monitoring & Evaluation:
Concessionary Funding Coordination:
Partnership & Stakeholder Engagement:
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.